Get products, brands, or categories based on a search query, which can be a partial or full name match.
Arguments
query
String!Required
The search query for entering partial or full name of product, brand, category, or collection.
Response
items
[SearchItem]List of autocomplete items suggested based on user input.
Query
1query searchProduct($query: String!) {2 searchProduct(query: $query) {3 items {4 custom_json5 display6 type7 }8 }9}
Try it
Input Variables
1{2 "query": "query"3}
Response
1{2 "searchProduct": {3 "items": [4 {5 "custom_json": {},6 "display": "display",7 "type": "type"8 }9 ]10 }11}
Was this section helpful?