Created
February 18, 2022 06:42
-
-
Save mustafa-qamaruddin/ee75b1a89eeccf1715e4f28c6b3ee5ea to your computer and use it in GitHub Desktop.
This file contains 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
mutation createAccount($value:AccountInput!) { | |
createAccount(value:$value) | |
{ | |
id | |
instanceId | |
} | |
} | |
{ | |
"value": { | |
"username": "cameron", | |
"emails": {"value": "[email protected]"}, | |
"password": { | |
"value": "1234567890" | |
} | |
} | |
} | |
######################################################################## | |
{ | |
find(type: Account, arcql: "*") { | |
edges { | |
node { | |
... on Account { | |
username | |
password { | |
value | |
} | |
emails { | |
value | |
} | |
} | |
} | |
cursor | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment