get-products
Retrieve specified products from a Shopify store by searching titles and setting a results limit. Simplifies data access for store management via GraphQL API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
searchTitle | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"type": "number"
},
"searchTitle": {
"type": "string"
}
},
"type": "object"
}