search-shopify
Search across Shopify store data for specific content types like products, articles, blogs, or pages using a query. Retrieve up to 50 results to manage and analyze store information effectively.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| first | No | Number of results to return (max 50) | |
| query | Yes | The search query to find content across the store | |
| types | No | Types of resources to search for. If not specified, searches all types. | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "first": {
      "default": 10,
      "description": "Number of results to return (max 50)",
      "maximum": 50,
      "minimum": 1,
      "type": "number"
    },
    "query": {
      "description": "The search query to find content across the store",
      "minLength": 1,
      "type": "string"
    },
    "types": {
      "description": "Types of resources to search for. If not specified, searches all types.",
      "items": {
        "enum": [
          "ARTICLE",
          "BLOG",
          "PAGE",
          "PRODUCT"
        ],
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}