3367 add facets subquery to product (#146)

This commit is contained in:
Anders Gustafsson
2023-02-28 10:28:58 +01:00
committed by GitHub
parent 5bc4e92c92
commit c475c1c860
8 changed files with 112 additions and 28 deletions
+6
View File
@@ -239,6 +239,11 @@ type Copyright {
products: [Product]
}
type Facet {
attribute: String,
values: [String]
}
type Product {
id: ID!
stockid: Int
@@ -261,6 +266,7 @@ type Product {
wallpaperTypes: [ProductWallpaperType]!
fields: ProductFields
orientation: Orientation
facets: [Facet]
"""
Will be single values return in later release
"""