catalog
Get the product catalog with all products and available filters
Authentication
Public Access: Accessible with the public API key
Query Structure
{
catalog {
productsCount
products {
# ProductConnection fields
}
}
}Arguments
This query accepts no arguments.
Return Type
Returns a Catalog object containing the root product catalog with all products and available filters.
Example
query {
catalog {
productsCount
products {
edges {
node {
id
name
price
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}