Store
Stores allow defining different contexts for a project.
type Store = Versioned & {
__typename?: 'Store';
id: Scalars['String'];
version: Scalars['Long'];
key: Scalars['String'];
name?: Maybe<Scalars['String']>;
nameAllLocales?: Maybe<Array<LocalizedString>>;
languages?: Maybe<Array<Scalars['Locale']>>; /** BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#beta-features */
productSelections: Array<ProductSelectionSetting>;
distributionChannelsRef: Array<Reference>;
distributionChannels: Array<Channel>;
supplyChannelsRef: Array<Reference>;
supplyChannels: Array<Channel>;
createdAt: Scalars['DateTime'];
lastModifiedAt: Scalars['DateTime'];
custom?: Maybe<CustomFieldsType>;
createdBy?: Maybe<Initiator>;
lastModifiedBy?: Maybe<Initiator>;
};