跳到内容
从 NextAuth.js v4 迁移?阅读 我们的迁移指南.
API 参考@auth/dgraph-adapter

@auth/dgraph-adapter

官方 Dgraph Auth.js / NextAuth.js 适配器。

安装

npm install next-auth @auth/dgraph-adapter

DgraphClientError

重新导出 DgraphClientError

DgraphClientParams

重新导出 DgraphClientParams

DgraphAdapterOptions

这是 Dgraph 适配器选项的接口。

属性

fragments?

optional fragments: {
  Account: string;
  Session: string;
  User: string;
  VerificationToken: string;
};

你可以向适配器提供的 GraphQL 片段,用于定义 useraccountsessionverificationToken 实体的形状。

默认情况下,适配器将使用 默认定义的片段,此配置选项允许扩展它们。

Account?
optional Account: string;
Session?
optional Session: string;
User?
optional User: string;
VerificationToken?
optional VerificationToken: string;

format

const format: {
  from: null | T;
};

类型声明

from()

类型参数
类型参数
T
参数
参数类型
对象?Record<string, any>
返回

null | T


DgraphAdapter()

DgraphAdapter(client, options?): Adapter

参数

参数类型
客户端DgraphClientParams
options?DgraphAdapterOptions

返回

适配器

Auth.js © Balázs Orbán and Team -2024