Skip to content

Instantly share code, notes, and snippets.

@factoryhr
Created May 24, 2022 08:30
Show Gist options
  • Save factoryhr/e2c87340d87d9d27b066a27ba8e7de10 to your computer and use it in GitHub Desktop.
Save factoryhr/e2c87340d87d9d27b066a27ba8e7de10 to your computer and use it in GitHub Desktop.
IntroductionToGraphQLBlogPost
mutation {
createComment(
parentId: 765,
key: "comment-1",
published: true,
type: "object",
input: {news: {id: 765, type: "object"},
username: "Joe",
email: "joe.doe@test.com",
content: "Great news!"
}) {
success
message
output {
username,
email,
content
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment