Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

CustomerGroup

A customer can be a member in a customer group (e.g. reseller, gold member). A customer group can be used in price calculations with special prices being assigned to certain customer groups.

export type CustomerGroup = Versioned & {
    __typename?: 'CustomerGroup';
    id: Scalars['String'];
    version: Scalars['Long'];
    name: Scalars['String'];
    key?: Maybe<Scalars['String']>;
    createdAt: Scalars['DateTime'];
    lastModifiedAt: Scalars['DateTime'];
    custom?: Maybe<CustomFieldsType>;
    createdBy?: Maybe<Initiator>;
    lastModifiedBy?: Maybe<Initiator>;
};

Referenced Types

On this page