Is it possible to use an argument other than skus with the GET_PRODUCT_DATA query in Catalog Service on EDS Storefront?
Hi Adobe Community,
In my Storefront implementation, I see that the GET_PRODUCT_DATA GraphQL query for Catalog Service is defined as follows:
query GET_PRODUCT_DATA($skus: [String]) {
products(skus: $skus) {
...ProductFragment
}
}
Is it possible to use a different argument (urlKey) instead of skus to fetch product data? If not, what is the recommended approach to support product lookups by other identifiers—should I implement a proxy or is there a built-in way to extend the query?
Thank you for your help!