Skip to main content

ClusterOption

No description

type ClusterOption implements IClusterOption {
id: Int!
clusterOptionId: Int!
isRequired: YesNo
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 ● YesNo enum

Indicates whether an option is required or not

ClusterOption.hidden ● YesNo enum

Indicates whether an option is hidden or not

ClusterOption.defaultProduct ● Product object

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

Returned By

clusterOptionCreate mutation ● clusterOptionUpdate mutation

Member Of

Cluster object ● ICluster interface