sketches of generated graphql client

This commit is contained in:
Ben Kraft
2019-12-21 00:03:19 -05:00
commit a23b0e3756
7 changed files with 137 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
"GetViewer gets the current user's name."
query GetUser($login: String!) {
User: user(login: $login) {
Name: name
}
}