Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Last active November 21, 2018 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redbluenat/aa9b19cea0679bba275c908a3d0d3c90 to your computer and use it in GitHub Desktop.
Save redbluenat/aa9b19cea0679bba275c908a3d0d3c90 to your computer and use it in GitHub Desktop.
type Query {
dogName: String!
dogs: [Dog!]!
}
type Mutation {
dog(type: String!, name: String!): Dog!
}
type Dog {
id: ID!
type: String!
name: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment