query

followedListing

Get a list of products or brands the user is following.
Arguments
collectionType
String!
Required
Type of collection followed, i.e. products, brands, or collections.
pageId
String
Page ID to retrieve next set of results.
pageSize
Int
Page ID to retrieve next set of results.
Response
Required
An array of product details that the user is following. Each item includes information such as the product name, price, and other attributes.
Required
Pagination details for the follow listing. It includes information such as the current page number, total pages, and items per page.
Query
1query followedListing(
2 $collectionType: String!
3 $pageId: String
4 $pageSize: Int
5) {
6 followedListing(
7 collectionType: $collectionType
8 pageId: $pageId
9 pageSize: $pageSize
10 ) {
11 items {
12 color
13 item_code
14 item_type
15 has_variant
16 uid
17 attributes
18 custom_config
19 description
20 discount
21 highlights
22 image_nature
23 is_dependent
24 name
25 product_group_tag
26 product_online_date
27 rating
28 rating_count
29 short_description
30 similars
31 slug
32 tags
33 teaser_tag
34 tryouts
35 type
36 sellable
37 identifiers
38 country_of_origin
39 no_of_boxes
40 promo_meta
41 }
42 page {
43 current
44 next_id
45 has_previous
46 has_next
47 item_total
48 type
49 size
50 }
51 }
52}
Try it
Input Variables
1{
2 "collectionType": "collectionType",
3 "pageId": "pageId",
4 "pageSize": 42
5}
Response
1{
2 "followedListing": {
3 "items": [
4 {
5 "color": "#e10098",
6 "item_code": "item_code",
7 "item_type": "item_type",
8 "has_variant": true,
9 "uid": 42,
10 "attributes": {},
11 "custom_config": {},
12 "description": "A description",
13 "discount": "discount",
14 "highlights": [
15 "highlights"
16 ],
17 "image_nature": "image_nature",
18 "is_dependent": true,
19 "name": "A name",
20 "product_group_tag": [
21 "product_group_tag"
22 ],
23 "product_online_date": "product_online_date",
24 "rating": 30.7,
25 "rating_count": 42,
26 "short_description": "short_description",
27 "similars": [
28 "similars"
29 ],
30 "slug": "slug",
31 "tags": [
32 "tags"
33 ],
34 "teaser_tag": "teaser_tag",
35 "tryouts": [
36 "tryouts"
37 ],
38 "type": "type",
39 "sellable": true,
40 "identifiers": [
41 "08a16b83-9094-4e89-8c05-2ccadd5c1c7e"
42 ],
43 "country_of_origin": "country_of_origin",
44 "no_of_boxes": 42,
45 "promo_meta": {}
46 }
47 ],
48 "page": {
49 "current": 42,
50 "next_id": "next_id",
51 "has_previous": true,
52 "has_next": true,
53 "item_total": 42,
54 "type": "type",
55 "size": 42
56 }
57 }
58}