加入Monster GraphQL工具适配器
通过Apollo 服务器软件包使用SQL生成和查询批处理功能。
这个包是做什么用的?
假设您有一个用于论坛网站的GraphQL架构,该架构是使用定义的,如下所示:
const typeDefs = `
type Comment {
id: Int!,
body: String!,
postId: Int,
authorId: Int,
archived: Boolean
}
type Post {
id: Int!,
body: String!,
authorId: Int,
numComments: Int!,
comments: [Comment]
}
type User {
id: Int!,
email: String!,
fullName: String!,
favNums: [Int],
posts: [Post]
}
type Query {
user(id: Int!): User
}
`
module . exports = typeDefs
使用参考实
1