All Release Notes
Added ability to retrieve and manage Channels by key
16 December 2024
Composable Commerce
HTTP API
Enhancement
Project configurationGraphQL
You can now retrieve, update, and delete Channels by user-defined key, and check for their existence by key.
Changes:
- [API] Added Get Channel by Key to Channels.
- [API] Added Check if Channel exists by Key to Channels.
- [API] Added Update Channel by Key to Channels.
- [API] Added Delete Channel by Key to Channels.
- [GraphQL API] Added the
key
field to theupdateChannel
anddeleteChannel
fields of theMutation
type.
The following changes were introduced in terms of GraphQL SDL:
type Mutation {updateChannel(version: Long!actions: [ChannelUpdateAction!]!"Queries with specified ID"id: String"Queries with specified key"key: String): ChanneldeleteChannel(version: Long!"Queries with specified ID"id: String"Queries with specified key"key: String): Channel}