@@ -0,0 +1,14 @@
+query GetOrderList($options: OrderListOptions) {
+ orders(options: $options) {
+ totalItems
+ items {
+ id
+ state
+ currencyCode
+ totalQuantity
+ subTotalWithTax
+ totalWithTax
+ shippingWithTax
+ }
+}
@@ -0,0 +1,8 @@
@@ -0,0 +1,33 @@
+ shippingLines {
+ shippingMethod {
+ name
+ priceWithTax
+ lines {
+ productVariant {
+ featuredAsset {
+ preview
+ linePriceWithTax
+ quantity
@@ -0,0 +1,29 @@
+query GetProductList($options: ProductListOptions) {
+ products(options: $options) {
+ slug
+ description
+ optionGroups {
+ enabled
+ variants {
+ sku
+ stockLevel
+ options {
+ groupId
@@ -0,0 +1,11 @@
+mutation LogIn($username: String! $password: String!) {
+ login(username: $username password: $password) {
+ ...on CurrentUser {
+ ...on ErrorResult {
+ errorCode
+ message