Skip to content

Instantly share code, notes, and snippets.

@mustafa-qamaruddin
Created February 18, 2022 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mustafa-qamaruddin/ee75b1a89eeccf1715e4f28c6b3ee5ea to your computer and use it in GitHub Desktop.
Save mustafa-qamaruddin/ee75b1a89eeccf1715e4f28c6b3ee5ea to your computer and use it in GitHub Desktop.
mutation createAccount($value:AccountInput!) {
createAccount(value:$value)
{
id
instanceId
}
}
{
"value": {
"username": "cameron",
"emails": {"value": "cameron@hypi.io"},
"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