Skip to content

Instantly share code, notes, and snippets.

@OrlandoST
Created April 15, 2020 19:22
Show Gist options
  • Save OrlandoST/b6d6bfdd2692386d61ab006175bf56ed to your computer and use it in GitHub Desktop.
Save OrlandoST/b6d6bfdd2692386d61ab006175bf56ed to your computer and use it in GitHub Desktop.
graphQL query examlres
query{
reference {
list(type: "color"){
items{
name
type
sort
}
}
}
}
mutation ($ref: ReferenceUpdateInput){
reference {
update(input: $ref){
...on Reference {
id
name
sort
}
...on ValidationErrors {validationErrors {field messages}}
...on Errors {errors{message}}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment