feat: feature get user order

This commit is contained in:
Quangnhankie
2021-10-07 18:04:54 +07:00
parent 69996ec7d2
commit 99803aa7fc
10 changed files with 73 additions and 40 deletions

View File

@@ -0,0 +1,19 @@
export const getUserOrderQuery = /* GraphQL */ `
query activeCustomer {
activeCustomer {
orders{
items{
lines{
productVariant{
name
}
quantity
}
total
state
code
}
}
}
}
`