CartResponse
Paginated response containing cart search results.
Provides a collection of shopping carts matching the search criteria, along with pagination information for navigating through large result sets.
type CartResponse {
items: [Cart!]!
itemsFound: Int!
offset: Int!
page: Int!
pages: Int!
start: Int!
end: Int!
}
Fields
CartResponse.items ● [Cart!]! non-null object
List of items of type Cart
CartResponse.itemsFound ● Int! non-null scalar
Total number of items found
CartResponse.offset ● Int! non-null scalar
The amount of items to show per page
CartResponse.page ● Int! non-null scalar
The current page
CartResponse.pages ● Int! non-null scalar
Total amount of pages
CartResponse.start ● Int! non-null scalar
Start position of the current page
CartResponse.end ● Int! non-null scalar
End position of the current page
Returned By
carts query