ShoppingCart
The shopping cart of a user.
type ShoppingCart {
lastUpdatedAt: DateTime!
shoppingcartItems(
first: Int
skip: Int
orderBy: CommonOrderInput
): ShoppingCartItemConnection!
}
Fields
ShoppingCart.lastUpdatedAt ● DateTime! non-null scalar
Timestamp when shopping cart was last updated.
ShoppingCart.shoppingcartItems ● ShoppingCartItemConnection! non-null object
Retrieves shoppingcart items in shopping cart.
ShoppingCart.shoppingcartItems.first●IntscalarDescribes that the
firstN shoppingcarts should be retrieved.
ShoppingCart.shoppingcartItems.skip ● Int scalar
Describes how many shoppingcarts should be skipped at the beginning.
ShoppingCart.shoppingcartItems.orderBy ● CommonOrderInput input
Specifies the order in which shoppingcarts are retrieved.
Returned By
updateShoppingcart mutation
Member Of
User object