products
List all products with optional filtering and sorting
products(
filter: ProductFilterInput
sortBy: ProductOrder
identifier: ID
before: String
after: String
first: Int
last: Int
): ProductCountableConnection!
Arguments
products.filter ● ProductFilterInput input
products.sortBy ● ProductOrder input
products.identifier ● ID scalar
products.before ● String scalar
Returns the items in the list that come before the specified cursor.
products.after ● String scalar
Returns the items in the list that come after the specified cursor.
products.first ● Int scalar
Returns the first n items from the list.
products.last ● Int scalar
Returns the items in the list that come after the specified cursor.
Type
ProductCountableConnection object
A connection to a list of items.