Skip to content

Instantly share code, notes, and snippets.

@mendelB
Last active September 7, 2023 18:09
Show Gist options
  • Save mendelB/e7fb2a04885765a5fea64de68eae57f2 to your computer and use it in GitHub Desktop.
Save mendelB/e7fb2a04885765a5fea64de68eae57f2 to your computer and use it in GitHub Desktop.
orders(first: 5, filter: { customer: "stayhome@example.com" }, status: FULFILLED) {
# edges {
# node {
# id
# number
# created
# userEmail
# }
# }
# }
# did not work
orders(first: 5, filter: { phone: "18022222222" }, status: FULFILLED) {
# edges {
# node {
# id
# number
# created
# userEmail
# }
# }
# }
order(id: "T3JkZXI6NDA4MA==") {
lines {
id
productSku
productName
quantity
issues {
status
}
}
}
mutation {
# orderLinesIssueCreate(input: [
# {
# orderLine: "T3JkZXJMaW5lOjY3NDQx",
# quantity: 1.0,
# issue: MISSING_ITEM
# }
# ]) {
# orderLineIssues {
# id
# status
# orderLine {
# wesRefunded
# }
# }
# }
# }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment