Created
December 11, 2018 14:31
-
-
Save coco98/04d080b1953b9b252149e8daeac0bc09 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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