42 lines
492 B
GraphQL
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
|
|
}
|
|
}
|