Arguments
collectionType
String!Required
Type of collection followed, i.e. products, brands, or collections.
pageId
StringPage ID to retrieve next set of results.
pageSize
IntPage ID to retrieve next set of results.
Response
items
[Product]!Required
An array of product details that the user is following. Each item includes information such as the product name, price, and other attributes.
page
PageInfo!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: String4 $pageSize: Int5) {6 followedListing(7 collectionType: $collectionType8 pageId: $pageId9 pageSize: $pageSize10 ) {11 items {12 color13 item_code14 item_type15 has_variant16 uid17 attributes18 custom_config19 description20 discount21 highlights22 image_nature23 is_dependent24 name25 product_group_tag26 product_online_date27 rating28 rating_count29 short_description30 similars31 slug32 tags33 teaser_tag34 tryouts35 type36 sellable37 identifiers38 country_of_origin39 no_of_boxes40 promo_meta41 }42 page {43 current44 next_id45 has_previous46 has_next47 item_total48 type49 size50 }51 }52}
Try it
Input Variables
1{2 "collectionType": "collectionType",3 "pageId": "pageId",4 "pageSize": 425}
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": 4256 }57 }58}
Was this section helpful?