saleor-apps-redis_apl/apps/search/graphql/fragments/ProductData.graphql
Lukasz Ostrowski 21f0a60f07
Add search app (#108)
* Add Search App to apps

* Link eslint config to invoices

* Changesets
2023-02-08 09:28:14 +01:00

42 lines
492 B
GraphQL

fragment ProductData on Product {
id
name
description
slug
category {
name
parent {
name
parent {
name
parent {
name
parent {
name
}
}
}
}
}
thumbnail {
url
}
attributes {
...ProductAttributesData
}
channelListings {
id
visibleInListings
channel {
slug
currencyCode
}
}
collections {
name
}
metadata {
key
value
}
}