Created
September 27, 2017 09:10
-
-
Save aofleejay/3fdc81534e12db1a61ee14ba28e042c6 to your computer and use it in GitHub Desktop.
GraphQL with description
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
| const typeDefs = [` | |
| # # Root query # | |
| # ## Domain ## | |
| # service.loremipsum.com/graphql | |
| # ## Header ## | |
| # Authorization : Bearer lorem ipsum | |
| type Query { | |
| user(id: String): User | |
| users: [User] | |
| } | |
| `]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment