more miscellaneous fixes while integrating into webapp

This commit is contained in:
Ben Kraft
2021-04-01 15:04:36 -07:00
parent fbf00f3bef
commit 9fe8f09e8c
20 changed files with 44 additions and 31 deletions
+12
View File
@@ -0,0 +1,12 @@
query getViewer {
viewer {
MyName: name
}
}
# getUser gets the given user's name from their username.
query getUser($Login: String!) {
user(login: $Login) {
theirName: name
}
}