OG
Size: a a a
OG
AR
AR
EK
c
OG
OG
OG
OV
fe
type PostMutation {
edit(postId: String): String
}
extend type Mutation {
post: PostMutation
}
OG
OG
fe
Mutation: {
edit() {
return '...';
}
}
fe
Mutation: {
post {
edit() {
return '...';
}
}
}
OV
OG
OG
a
P@