⚠️ Potential Breaking Changes
SDK
The SDK was updated drastically, and has been renamed from @directus/sdk-js
to @directus/sdk
. Make sure to check https://docs.directus.io/reference/sdk/ and update the package in your dependency tree.
GraphQL
The system query/mutations have been extracted from the /graphql
endpoint into their own /graphql/system
endpoint to avoid naming conflicts. This also means that the queries for regular collections are no longer nested under an arbitrary items
key. Make sure to update:
# Before
query {
items {
articles {
title
}
}
}
# After
query {
articles {
title
}
}
Directus refs/tags/v9.0.0-rc.54