7 September 2020
ExtensibilityProject configurationGraphQL
You can now define custom fields on Stores.
This feature includes the following changes:
- [API] Added 
storeenumeration value to Customizable Resources - [API] Added 
customfield to StoreDraft and Store - [API] Added the setCustomType update action to Update Store.
 - [API] Added the setCustomField update action to Update Store.
 
Introduced the following changes to the GraphQL schema (in SDL format):
extend type Store {
  custom: CustomFieldsType
}
extend input StoreUpdateAction {
  setCustomType: SetCustomType
  setCustomFields: SetCustomFields
}