Created
July 13, 2020 22:35
-
-
Save MarcusHurney/04386203bb84cee6ea37f130ff8305c5 to your computer and use it in GitHub Desktop.
Why have the extra wrapper and parameter type declaration with GQL queries and mutations?
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
query ProjectOwner($login: String!) { | |
projectOwner(login: $login) { | |
websiteUrl | |
} | |
} | |
"vs" | |
query projectOwner(login: String!) { | |
websiteUrl | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment