Skip to content

Instantly share code, notes, and snippets.

@coco98
Created December 11, 2018 14:31
Show Gist options
  • Save coco98/04d080b1953b9b252149e8daeac0bc09 to your computer and use it in GitHub Desktop.
Save coco98/04d080b1953b9b252149e8daeac0bc09 to your computer and use it in GitHub Desktop.
query fetchOrders {
order (limit: 10, order_by:created_at_desc) {
id
user_name
items {
detail {
id
name
}
}
}
}
query fetchItems {
item {
id
name
}
}
subscription orderStatus {
order (where: {id:{_eq: "71c41130-fbd9-11e8-942f-bf58a564c71f"}}) {
id
user_name
is_paid
is_approved
is_validated
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment