30 lines
413 B
GraphQL
30 lines
413 B
GraphQL
query LastOrder {
|
|
orders(first: 1) {
|
|
edges {
|
|
node {
|
|
id
|
|
number
|
|
created
|
|
user {
|
|
firstName
|
|
lastName
|
|
}
|
|
shippingAddress {
|
|
country {
|
|
country
|
|
}
|
|
}
|
|
total {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
lines {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|