QUERY
products
List products with pagination, filtering, and sorting
ARGUMENTS
pageIntDefault: 1
limitIntDefault: 20
statusProductStatusDefault: ACTIVE
sortProductSortFieldDefault: CREATED_AT
orderSortDirectionDefault: DESC
collectionIdID
minPriceInt
maxPriceInt
RETURNS
ProductConnection!
EXAMPLE REQUEST
query {
products(page: 10, limit: 10, status: "productstatus", sort: "productsortfield", order: "sortdirection", collectionId: "abc123", minPrice: 10, maxPrice: 10) {
# select fields here
}
}RESPONSE
{ /* selected fields */ }