Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created December 16, 2018 15:51
Show Gist options
  • Save redbluenat/4bd1e07471d48ac5664da871dff8f4b6 to your computer and use it in GitHub Desktop.
Save redbluenat/4bd1e07471d48ac5664da871dff8f4b6 to your computer and use it in GitHub Desktop.
type Query {
dogName: String!
dogs: [Dog!]!
}
type Mutation {
dog(type: String!, name: String!): Dog!
updateDog(id: String!, type: String!, name: String!): Dog!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment