Skip to main content

ClusterOption

No description

type ClusterOption implements IClusterOption {
id: Int!
clusterOptionId: Int!
isRequired: Boolean
hidden: YesNo!
defaultProduct: Product
products: [Product!]
names(
language: String
): [LocalizedString!]!
descriptions(
language: String
): [LocalizedString!]!
shortDescriptions(
language: String
): [LocalizedString!]!
}

Fields

ClusterOption.id ● Int! non-null scalar

ClusterOption.clusterOptionId ● Int! non-null scalar

The classID of the cluster that represents this cluster

ClusterOption.isRequired ● Boolean scalar

Indicates whether an option is required or not

ClusterOption.hidden ● YesNo! non-null enum

Indicates whether an option is hidden or not

ClusterOption.defaultProduct ● Product object

The default product that should be selected for this option

ClusterOption.products ● [Product!] list object

ClusterOption.names ● [LocalizedString!]! non-null object

ClusterOption.names.language ● String scalar

ClusterOption.descriptions ● [LocalizedString!]! non-null object

ClusterOption.descriptions.language ● String scalar

ClusterOption.shortDescriptions ● [LocalizedString!]! non-null object

ClusterOption.shortDescriptions.language ● String scalar

Interfaces

IClusterOption interface

Container for a set of options belonging to a configurable cluster

Member Of

Cluster object ● ICluster interface