query

productBundles

Get products bundles to the one specified by its slug.
Arguments
Product uid.
slug
String
A short, human-readable, URL-friendly identifier of a product. You can get slug value from the endpoint /service/application/catalog/v1.0/products/.
Response
Represents list of bundles/product groupings.
Query
1query productBundles($id: String, $slug: String) {
2 productBundles(id: $id, slug: $slug) {
3 items {
4 _id
5 choice
6 company_id
7 is_active
8 logo
9 meta
10 name
11 page_visibility
12 same_store_assignment
13 slug
14 created_on
15 verified_on
16 modified_on
17 }
18 }
19}
Try it
Input Variables
1{
2 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
3 "slug": "slug"
4}
Response
1{
2 "productBundles": {
3 "items": [
4 {
5 "_id": "_id",
6 "choice": {},
7 "company_id": 42,
8 "is_active": true,
9 "logo": "logo",
10 "meta": {},
11 "name": {},
12 "page_visibility": [
13 "pdp"
14 ],
15 "same_store_assignment": true,
16 "slug": {},
17 "created_on": "created_on",
18 "verified_on": "verified_on",
19 "modified_on": "modified_on"
20 }
21 ]
22 }
23}