Available queries

Associated queryReturns multiple results
Product
Products✔️

Available fields

LabelTypeNoteNull
brandBrandThe product's brand✔️
changedDateThe date of the product's last modification
country_of_originStringThe origin country of the product✔️
createdDateThe date of the product's creation
descriptionstringThe product's description✔️
idintegerThe id of the product
labelstringThe product's name
optionsOptionsThe product's options (colors, materials, size, ...)✔️
seasonsSeasonsThe products season✔️
skustringThe product's sku✔️
supplierSupplierThe product's supplier✔️
supplier_descriptionstringThe supplier's description✔️
tagsProduct tagsThe product's tags✔️
userUserThe user who created this product
variantsVariantsThe variants available for this product, each having different options

Example of a query

query{
  Products{
    edges{
      node{
        brand{
          label
        }
        changed
        country_of_origin
        created
        description
        id
        label
        options{
          edges{
            node{
              label
            }
          }
        }
        seasons{
          edges{
            node{
              label
            }
          }
        }
        supplier{
          label
        }
        supplier_description
        sku
        tags{
          edges{
            node{
              label
            }
          }
        }
        user{
          display_name
        }
        variants{
          edges{
            node{
              label
            }
          }
        }
      }
    }
  }
}