Created
December 16, 2018 15:51
-
-
Save redbluenat/4bd1e07471d48ac5664da871dff8f4b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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