OBJECT

OnlineFormProductServicesProperty

link GraphQL Schema definition

  • type OnlineFormProductServicesProperty {
  • # If true, the combined total amount of the selected products is shown.
  • showTotalAmount: Boolean!
  • # If true, product images are shown in the product list.
  • showProductImages: Boolean!
  • # If true, the number of products that can be selected is limited (see
  • # maxSelectedProducts).
  • productSelectionLimitEnabled: Boolean!
  • # Maximum number of products that can be selected when the selection limit is
  • # enabled.
  • maxSelectedProducts: Int
  • # Ids of the product fields shown for each selectable product.
  • fields: [ID!]!
  • # Whether the selectable products are a fixed static list or a dynamically
  • # filtered set.
  • productListType: ProductListTypeEnum!
  • # Ids of the products offered when the product list type is static.
  • staticProducts: [ID!]
  • # Filter selecting which products are offered when the product list type is
  • # dynamic.
  • dynamicProductsFilter: FieldFilter
  • }