5 lines
104 B
GraphQL
5 lines
104 B
GraphQL
mutation CreatePost($input: PostInput!) {
|
|
createPost(input: $input) {
|
|
...RegularPostResponse
|
|
}
|
|
} |