lowercase for arguments

This commit is contained in:
Ben Kraft
2020-03-27 18:01:56 -07:00
parent 9e01efdd88
commit af5d1bd542
3 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ query getViewer {
}
# getUser gets the given user's name from their username.
query getUser($login: String!) {
user(login: $login) {
query getUser($Login: String!) {
user(login: $Login) {
theirName: name
}
}