旧版 Nexus 到新版 Nexus
概述
注意:本指南尚未完全更新,因为它目前使用的是 已弃用 版本的
nexus-plugin-prisma
。虽然这仍然有效,但建议使用新的nexus-prisma
库或其他代码优先 GraphQL 库,如 Pothos。如果您有任何疑问,请随时在我们的 Discord 上分享。
此升级指南介绍了如何升级基于 Prisma 1 并使用 nexus
(< v0.12.0) 或 @nexus/schema
以及 nexus-prisma
(< v4.0.0) 来实现 GraphQL 服务器的项目。
代码将升级到 @nexus/schema
的最新版本。此外,nexus-prisma
包将替换为新的 nexus-plugin-prisma
。
本指南假设您已完成 升级 Prisma ORM 层的指南。这意味着您已经
- 安装了 Prisma ORM 2 CLI
- 创建了您的 Prisma ORM 2 模式
- 内省了您的数据库并解决了潜在的 模式不兼容性
- 安装并生成了 Prisma Client
本指南还假设您的文件设置类似于以下内容
.
├── README.md
├── package.json
├── prisma
│ └── schema.prisma
├── prisma1
│ ├── datamodel.prisma
│ └── prisma.yml
└── src
├── generated
│ ├── nexus-prisma
│ ├── nexus.ts
│ ├── prisma-client
│ └── schema.graphql
├── types.ts
└── index.ts
重要部分是
- 一个名为
prisma
的文件夹,其中包含您的 Prisma ORM 2 模式 - 一个名为
src
的文件夹,其中包含您的应用程序代码
如果您的项目结构与此不同,则需要调整指南中的说明以匹配您自己的设置。
1. 升级 Nexus 依赖项
要开始,您可以删除旧的 Nexus 和 Prisma 1 依赖项
npm uninstall nexus nexus-prisma prisma-client-lib prisma1
然后,您可以在项目中安装最新的 @nexus/schema
依赖项
npm install @nexus/schema
接下来,安装 Nexus 的 Prisma ORM 插件,它将允许您在 GraphQL API 中公开 Prisma ORM 模型(这是以前 nexus-prisma
包的新等效项)
npm install nexus-plugin-prisma
nexus-plugin-prisma
依赖项捆绑了所有必需的 Prisma ORM 依赖项。因此,您应该删除在升级应用程序的 Prisma ORM 层时添加安装的依赖项
npm uninstall @prisma/cli @prisma/client
但是请注意,您仍然可以使用熟悉的命令调用 Prisma ORM 2 CLI
npx prisma -v
注意:如果您在运行
npx prisma -v
时看到 Prisma 1 CLI 的输出,请确保删除您的node_modules
文件夹并重新运行npm install
。
2. 更新 Nexus 和 Prisma ORM 的配置
要开始,您可以删除在新设置中不再需要的旧导入
import { makePrismaSchema, prismaObjectType } from 'nexus-prisma'
import datamodelInfo from './generated/nexus-prisma'
import { prisma } from './generated/prisma-client'
相反,您现在将以下内容导入到您的应用程序中
import { nexusSchemaPrisma } from 'nexus-plugin-prisma/schema'
import { objectType, makeSchema, queryType, mutationType } from '@nexus/schema'
import { PrismaClient } from '@prisma/client'
接下来,您需要调整当前创建 GraphQLSchema
的代码,这很可能当前正在通过代码中的 makePrismaSchema
函数进行。由于此函数是从已删除的 nexus-prisma
包中导入的,因此您需要将其替换为 @nexus/schema
包中的 makeSchema
函数。Nexus 的 Prisma ORM 插件的使用方式在最新版本中也有所改变。
以下是一个此类配置的示例
const schema = makePrismaSchema({
const schema = makeSchema({
// Provide all the GraphQL types we've implemented
types: [Query, Mutation, UserUniqueInput, User, Post, Category, Profile],
// Configure the interface to Prisma
prisma: {
datamodelInfo,
client: prisma,
},
plugins: [nexusSchemaPrisma({
experimentalCRUD: true,
})],
// Specify where Nexus should put the generated files
outputs: {
schema: path.join(__dirname, './generated/schema.graphql'),
typegen: path.join(__dirname, './generated/nexus.ts'),
},
// Configure nullability of input arguments: All arguments are non-nullable by default
nonNullDefaults: {
input: false,
output: false,
},
// Configure automatic type resolution for the TS representations of the associated types
typegenAutoConfig: {
sources: [
{
source: path.join(__dirname, './types.ts'),
alias: 'types',
},
],
contextType: 'types.Context',
},
})
如果您以前键入了通过解析器链传递的 GraphQL context
对象,则需要像这样调整类型
import { Prisma } from './generated/prisma-client'
import { PrismaClient } from '@prisma/client'
export interface Context {
prisma: Prisma
prisma: PrismaClient
}
3. 迁移您的 GraphQL 类型
以下是使用 @nexus/schema
和 nexus-plugin-prisma
的最新版本创建 GraphQL 类型这两种方法之间主要区别的快速概述。
prismaObjectType
函数不再可用,所有类型都是使用 Nexus 的objectType
函数创建的。- 要通过 Nexus 公开 Prisma 模型,您可以使用
t.model
属性,该属性添加到传递到 Nexus 的definition
函数中的t
参数中。t.model
使您可以访问 Prisma 模型的属性并允许您公开它们。 - 通过 Nexus 公开 Prisma 模型的 CRUD 操作遵循类似的方法。这些通过
t.crud
在您的queryType
和mutationType
类型的definition
函数中公开。
3.1. 迁移Post
类型
使用之前的nexus-prisma
包定义类型
在示例应用中,User
类型的定义如下
const User = prismaObjectType({
name: 'User',
definition(t) {
t.prismaFields([
'id',
'name',
'email',
'jsonData',
'role'
{
name: 'posts',
args: [], // remove the arguments from the `posts` field of the `User` type in the Prisma schema
},
])
},
})
使用最新版本的@nexus/schema
和nexus-plugin-prisma
定义类型
使用最新版本的@nexus/schema
,您现在可以访问主schema
实例上的objectType
函数,并像这样公开来自Prisma模型的所有字段
const User = objectType({
name: 'User',
definition(t) {
t.model.id()
t.model.name()
t.model.email()
t.model.jsonData()
t.model.role()
t.model.posts({
pagination: false,
ordering: false,
filtering: false,
})
t.model.profile()
},
})
请注意,t.model
会查看传递给objectType
函数的参数对象的name
属性,并将其与Prisma模式中的模型进行匹配。在本例中,它与User
模型匹配。因此,t.model
公开了以User
模型的字段命名的函数。
此时,您可能会在关系字段posts
和profile
上看到错误,例如:
//delete-next-line
Missing type Post, did you forget to import a type to the root query?
这是因为您尚未将Post
和Profile
类型添加到GraphQL模式中,一旦这些类型也成为GraphQL模式的一部分,这些错误就会消失!
3.2. 迁移Post
类型
使用之前的nexus-prisma
包定义类型
在示例应用中,Post
类型的定义如下
const Post = prismaObjectType({
name: 'Post',
definition(t) {
t.prismaFields(['*'])
},
})
prismaFields
中的星号表示公开了所有Prisma字段。
使用最新版本的@nexus/schema
和nexus-plugin-prisma
定义类型
使用最新版本的@nexus/schema
,您需要显式公开所有字段,没有只公开Prisma模型中所有内容的选项。
因此,Post
的新定义必须显式列出其所有字段
const Post = objectType({
name: 'Post',
definition(t) {
t.model.id()
t.model.title()
t.model.content()
t.model.published()
t.model.author()
t.model.categories()
},
})
请注意,t.model
会查看name
属性并将其与Prisma模式中的模型进行匹配。在本例中,它与Post
模型匹配。因此,t.model
公开了以Post
模型的字段命名的函数。
3.3. 迁移Profile
类型
使用之前的nexus-prisma
包定义类型
在示例应用中,Profile
类型的定义如下
const Profile = prismaObjectType({
name: 'Profile',
definition(t) {
t.prismaFields(['*'])
},
})
prismaFields
中的星号表示公开了所有Prisma字段。
使用最新版本的@nexus/schema
和nexus-plugin-prisma
定义类型
使用最新版本的@nexus/schema
,您需要显式公开所有字段,没有只公开Prisma模型中所有内容的选项。
因此,Profile
的新定义必须显式列出其所有字段
const Profile = objectType({
name: 'Profile',
definition(t) {
t.model.id()
t.model.bio()
t.model.user()
t.model.userId()
},
})
请注意,t.model
会查看name
属性并将其与Prisma模式中的模型进行匹配。在本例中,它与Profile
模型匹配。因此,t.model
公开了以Profile
模型的字段命名的函数。
3.4. 迁移Category
类型
使用之前的nexus-prisma
包定义类型
在示例应用中,Category
类型的定义如下
const Category = prismaObjectType({
name: 'Category',
definition(t) {
t.prismaFields(['*'])
},
})
prismaFields
中的星号表示公开了所有Prisma ORM字段。
使用最新版本的@nexus/schema
和nexus-plugin-prisma
定义类型
使用最新版本的@nexus/schema
,您需要显式公开所有字段,没有只公开Prisma模型中所有内容的选项。
因此,Category
的新定义必须显式列出其所有字段
const Category = objectType({
name: 'Category',
definition(t) {
t.model.id()
t.model.name()
t.model.posts({
pagination: true,
ordering: true,
filtering: true,
})
},
})
请注意,t.model
会查看name
属性并将其与Prisma模式中的模型进行匹配。在本例中,它与Category
模型匹配。因此,t.model
公开了以Category
模型的字段命名的函数。
4. 迁移GraphQL操作
下一步,您可以开始将所有GraphQL查询和变异从“之前的”GraphQL API迁移到新的API。
在本指南中,将使用以下GraphQL操作示例
input UserUniqueInput {
id: String
email: String
}
type Query {
posts(searchString: String): [Post!]!
user(userUniqueInput: UserUniqueInput!): User
users(where: UserWhereInput, orderBy: Enumerable<UserOrderByInput>, skip: Int, after: String, before: String, first: Int, last: Int): [User]!
}
type Mutation {
createUser(data: UserCreateInput!): User!
createDraft(title: String!, content: String, authorId: ID!): Post
updateBio(userUniqueInput: UserUniqueInput!, bio: String!): User
addPostToCategories(postId: String!, categoryIds: [String!]!): Post
}
4.1. 迁移GraphQL查询
在本节中,您将把之前版本的nexus
和nexus-prisma
中的所有GraphQL查询迁移到最新版本的@nexus/schema
和nexus-plugin-prisma
。
4.1.1. 迁移users
查询
在我们的示例API中,示例GraphQL模式中的users
查询实现如下。
const Query = prismaObjectType({
name: 'Query',
definition(t) {
t.prismaFields(['users'])
},
})
要使用新的Nexus获得相同的行为,您需要在t.crud
上调用users
函数
schema.queryType({
definition(t) {
t.crud.users({
filtering: true,
ordering: true,
pagination: true,
})
},
})
回想一下,crud
属性是由nexus-plugin-prisma
添加到t
中的(使用与t.model
相同的机制)。
4.1.2. 迁移posts(searchString: String): [Post!]!
查询
在示例API中,posts
查询实现如下
queryType({
definition(t) {
t.list.field('posts', {
type: 'Post',
args: {
searchString: stringArg({ nullable: true }),
},
resolve: (parent, { searchString }, context) => {
return context.prisma.posts({
where: {
OR: [
{ title_contains: searchString },
{ content_contains: searchString },
],
},
})
},
})
},
})
此查询唯一需要更新的是对Prisma ORM的调用,因为新的Prisma Client API与Prisma 1中使用的API略有不同。
queryType({
definition(t) {
t.list.field('posts', {
type: 'Post',
args: {
searchString: stringArg({ nullable: true }),
},
resolve: (parent, { searchString }, context) => {
return context.prisma.post.findMany({
where: {
OR: [
{ title: { contains: searchString } },
{ content: { contains: searchString } },
],
},
})
},
})
},
})
请注意,db
对象由nexus-plugin-prisma
自动附加到context
。它表示您的PrismaClient
的实例,使您能够在解析器中向数据库发送查询。
4.1.3. 迁移user(uniqueInput: UserUniqueInput): User
查询
在示例API中,user
查询实现如下
inputObjectType({
name: 'UserUniqueInput',
definition(t) {
t.string('id')
t.string('email')
},
})
queryType({
definition(t) {
t.field('user', {
type: 'User',
args: {
userUniqueInput: schema.arg({
type: 'UserUniqueInput',
nullable: false,
}),
},
resolve: (_, args, context) => {
return context.prisma.user({
id: args.userUniqueInput?.id,
email: args.userUniqueInput?.email,
})
},
})
},
})
您现在需要调整对prisma
实例的调用,因为新的Prisma Client API与Prisma 1中使用的API略有不同。
const Query = queryType({
definition(t) {
t.field('user', {
type: 'User',
args: {
userUniqueInput: arg({
type: 'UserUniqueInput',
nullable: false,
}),
},
resolve: (_, args, context) => {
return context.prisma.user.findUnique({
where: {
id: args.userUniqueInput?.id,
email: args.userUniqueInput?.email,
},
})
},
})
},
})
4.2. 迁移GraphQL变异
在本节中,您将把示例模式中的GraphQL变异迁移到最新版本的@nexus/schema
和nexus-plugin-prisma
。
4.2.1. 迁移createUser
变异
在我们的示例API中,示例GraphQL模式中的createUser
变异实现如下。
const Mutation = prismaObjectType({
name: 'Mutation',
definition(t) {
t.prismaFields(['createUser'])
},
})
要使用最新版本的@nexus/schema
和nexus-plugin-prisma
获得相同的行为,您需要在t.crud
上调用createOneUser
函数并传递一个alias
以将GraphQL模式中的字段重命名为createUser
(否则它将被称为createOneUser
,以使用的函数命名)
const Query = queryType({
definition(t) {
t.crud.createOneUser({
alias: 'createUser',
})
},
})
回想一下,crud
属性是由nexus-plugin-prisma
添加到t
中的(使用与t.model
相同的机制)。
4.2.2. 迁移createDraft(title: String!, content: String, authorId: String!): Post!
查询
在示例应用中,createDraft
变异实现如下。
mutationType({
definition(t) {
t.field('createDraft', {
type: 'Post',
args: {
title: stringArg({ nullable: false }),
content: stringArg(),
authorId: stringArg({ nullable: false }),
},
resolve: (_, args, context) => {
return context.prisma.createPost({
title: args.title,
content: args.content,
author: {
connect: { id: args.authorId },
},
})
},
})
},
})
您现在需要调整对prisma
实例的调用,因为新的Prisma Client API与Prisma 1中使用的API略有不同。
const Mutation = mutationType({
definition(t) {
t.field('createDraft', {
type: 'Post',
args: {
title: stringArg({ nullable: false }),
content: stringArg(),
authorId: stringArg({ nullable: false }),
},
resolve: (_, args, context) => {
return context.prisma.post.create({
data: {
title: args.title,
content: args.content,
author: {
connect: { id: args.authorId },
},
},
})
},
})
},
})
4.2.3. 迁移updateBio(bio: String, userUniqueInput: UserUniqueInput!): User
变异
在示例API中,updateBio
变异定义并实现如下。
mutationType({
definition(t) {
t.field('updateBio', {
type: 'User',
args: {
userUniqueInput: arg({
type: 'UserUniqueInput',
nullable: false,
}),
bio: stringArg(),
},
resolve: (_, args, context) => {
return context.prisma.updateUser({
where: {
id: args.userUniqueInput?.id,
email: args.userUniqueInput?.email,
},
data: {
profile: {
create: { bio: args.bio },
},
},
})
},
})
},
})
您现在需要调整对prisma
实例的调用,因为新的Prisma Client API与Prisma 1中使用的API略有不同。
const Mutation = mutationType({
definition(t) {
t.field('updateBio', {
type: 'User',
args: {
userUniqueInput: arg({
type: 'UserUniqueInput',
nullable: false,
}),
bio: stringArg(),
},
resolve: (_, args, context) => {
return context.prisma.user.update({
where: {
id: args.userUniqueInput?.id,
email: args.userUniqueInput?.email,
},
data: {
profile: {
create: { bio: args.bio },
},
},
})
},
})
},
})
4.2.4. 迁移addPostToCategories(postId: String!, categoryIds: [String!]!): Post
变异
在示例API中,addPostToCategories
变异定义并实现如下。
mutationType({
definition(t) {
t.field('addPostToCategories', {
type: 'Post',
args: {
postId: stringArg({ nullable: false }),
categoryIds: stringArg({
list: true,
nullable: false,
}),
},
resolve: (_, args, context) => {
const ids = args.categoryIds.map((id) => ({ id }))
return context.prisma.updatePost({
where: {
id: args.postId,
},
data: {
categories: { connect: ids },
},
})
},
})
},
})
您现在需要调整对prisma
实例的调用,因为新的Prisma Client API与Prisma 1中使用的API略有不同。
const Mutation = mutationType({
definition(t) {
t.field('addPostToCategories', {
type: 'Post',
args: {
postId: stringArg({ nullable: false }),
categoryIds: stringArg({
list: true,
nullable: false,
}),
},
resolve: (_, args, context) => {
const ids = args.categoryIds.map((id) => ({ id }))
return context.prisma.post.update({
where: {
id: args.postId,
},
data: {
categories: { connect: ids },
},
})
},
})
},
})
5. 清理
5.1. 清理npm依赖项
如果您还没有,现在可以卸载与Prisma 1设置相关的依赖项
npm uninstall prisma1 prisma-client-lib
5.2. 删除未使用的文件
接下来,删除Prisma 1设置的文件
rm -rf src/generated
rm -rf prisma1
5.3. 停止 Prisma ORM 服务器
最后,您可以停止运行 Prisma ORM 服务器。