npm @directus/sdk 9.0.0-rc.54
v9.0.0-rc.54

latest releases: 18.0.0, 17.0.2, 17.0.1...
3 years ago

⚠️ 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

Don't miss a new sdk release

NewReleases is sending notifications on new releases.