Upgrade Guides

List all current breaking changes in the GraphQL API and how to upgrade your application.

Each deprecated field will be maintained for 6 months until we remove it definitely. Be sure to update your application before this deadline!

Stay tuned #sirius-developer!

ArticleVersion

createdAt

Maintained until 2022-09-01

Use date field instead.

Example with ArticleVersion query:

query {
node(id: "<An articleVersion ID>") {
id
internalId
... on ArticleVersion {
title
chapo
- createdAt
+ date
}
}
}
Edit this page on GitHub