|
|
@@ -5,7 +5,7 @@ type Query {
|
|
|
activeCustomer: Customer
|
|
|
"""
|
|
|
The active Order. Will be `null` until an Order is created via `addItemToOrder`. Once an Order reaches the
|
|
|
- state of `PaymentApproved` or `PaymentSettled`, then that Order is no longer considered "active" and this
|
|
|
+ state of `PaymentAuthorized` or `PaymentSettled`, then that Order is no longer considered "active" and this
|
|
|
query will once again return `null`.
|
|
|
"""
|
|
|
activeOrder: Order
|
|
|
@@ -13,7 +13,7 @@ type Query {
|
|
|
availableCountries: [Country!]!
|
|
|
"A list of Collections available to the shop"
|
|
|
collections(options: CollectionListOptions): CollectionList!
|
|
|
- "Returns a Collection either by its id or slug. If neither 'id' nor 'slug' is speicified, an error will result."
|
|
|
+ "Returns a Collection either by its id or slug. If neither 'id' nor 'slug' is specified, an error will result."
|
|
|
collection(id: ID, slug: String): Collection
|
|
|
"Returns a list of eligible shipping methods based on the current active Order"
|
|
|
eligibleShippingMethods: [ShippingMethodQuote!]!
|