Features
- introduce
@auth/dgraph-adapter
(#7792)
BREAKING CHANGES
- If you are coming from the previous adapter, change your
package.json
:
- "@next-auth/dgraph-adapter": "0.0.0",
+ "@auth/dgraph-adapter": "0.0.0",
And run npm install
, yarn install
or pnpm install
respectively.
Note: This packages is published as ESM-only
fetch
is not polyfilled anymore.
In older Node.js versions, you can use the --experimental-fetch
flag, or install undici
and add the following line:
globalThis.fetch ??= require("undici").fetch