-
Notifications
You must be signed in to change notification settings - Fork 15
/
query.graphql
51 lines (51 loc) · 1019 Bytes
/
query.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
query SearchProducts($pageSize: Int, $currentPage: Int, $storeCode: String, $published: String = "1") {
products(
filter: {store_code: {eq: $storeCode}, published: {eq: $published}}
pageSize: $pageSize
currentPage: $currentPage
) {
items {
product_label
primary_image
published
sku
url_key
name
item_description
item_title
item_characteristics
sales_size
sales_uom_code
sales_uom_description
country_of_origin
availability
new_product
promotion
price_range {
minimum_price {
final_price {
currency
value
__typename
}
__typename
}
__typename
}
retail_price
created_at
first_published_date
last_published_date
updated_at
__typename
}
total_count
page_info {
current_page
page_size
total_pages
__typename
}
__typename
}
}