All Release Notes
Added 'oldSlug' field to CategorySlugChanged and ProductSlugChanged Messages
14 December 2020
Composable Commerce
HTTP API
Enhancement
Messages/SubscriptionsGraphQLProduct catalog
We added the new field oldSlug
to the CategorySlugChanged Message and ProductSlugChanged Message that contains the slug as it was before the change. This information makes it easier for you to track changes of your slugs and to implement auto-redirection strategies for those product and category pages that have moved temporarily or permanently. On the GraphQL API you can now also query for the oldSlugAllLocales
field of the messages
in the fragments CategorySlugChanged
and ProductSlugChanged
.
- [API] Added optional field
oldSlug
to CategorySlugChanged Message. - [API] Added optional field
oldSlug
to ProductSlugChanged Message. - [GraphQL API] Added the
oldSlug
andoldSlugAllLocales
fields toCategorySlugChanged
type ofmessages
query. - [GraphQL API] Added the
oldSlug
andoldSlugAllLocales
fields toProductSlugChanged
type tomessages
query.
The following changes were introduced in terms of GraphQL SDL:
type CategorySlugChanged implements MessagePayload {slug("String is defined for different locales. This argument specifies the desired locale."locale: Locale"List of languages the client is able to understand, and which locale variant is preferred."acceptLanguage: [Locale!]): StringslugAllLocales: [LocalizedString!]!oldSlug("String is defined for different locales. This argument specifies the desired locale."locale: Locale"List of languages the client is able to understand, and which locale variant is preferred."acceptLanguage: [Locale!]): StringoldSlugAllLocales: [LocalizedString!]!type: String!}
type ProductSlugChanged implements MessagePayload {slug("String is defined for different locales. This argument specifies the desired locale."locale: Locale"List of languages the client is able to understand, and which locale variant is preferred."acceptLanguage: [Locale!]): StringslugAllLocales: [LocalizedString!]!oldSlug("String is defined for different locales. This argument specifies the desired locale."locale: Locale"List of languages the client is able to understand, and which locale variant is preferred."acceptLanguage: [Locale!]): StringoldSlugAllLocales: [LocalizedString!]!type: String!}