我正在学习graphql和pyramida,遇到了有关Arizona订阅的问题。
只要要在Item上创建或更新,我都想返回一个项目列表。所以这是我的代码,不起作用。
scheme.graphql
# import Item from "./generated/prisma.graphql"
type Subscription {
todoItems: TodoItems
}
type TodoItems {
items: [Item!]!
}
解析器
const Subscription = {
todoItems: {
subscribe: async (parent, args, context, info) => {
const itemSubscription = await context.db.subscription.item({
where: { mutation_in: ['CREATED', 'UPDATED'] },
}, info);
return itemSubscription;
},
resolve: async (payload, args, context, info) => {
const items = await context.db.query.items({ type: 0, orderBy: 'updatedAt_DESC' }, info);
return { items };
},
},
}
module.exports = {
Subscription,
}
和graphql游乐场
subscription{
todoItems{
items{
title
}
}
}
它给出了错误:
{
"errors": [
{
"message": "Anonymous Subscription must select only one top level field.",
"locations": [
{
"line": 2,
"column": 3
}
],
"path": [
"todoItems"
],
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"exception": {
"stacktrace": [
"Error: Anonymous Subscription must select only one top level field.",
" at asErrorInstance (d:\\git\\inote\\node_modules\\graphql\\execution\\execute.js:489:43)",
" at <anonymous>",
" at process._tickCallback (internal/process/next_tick.js:118:7)"
]
}
}
}
]
}
有什么主意吗?
答案 0 :(得分:2)
Prisma不支持订阅项目列表。相反,prisma希望您订阅单个项目的突变(“创建”,“更新”,“已删除”)。如here所述。
例如
subscription newTodos {
todo(where: {
mutation_in: [CREATED]
}) {
mutation
node {
title
}
}
}
要获取“完整列表”,必须在预订后 上查询待办事项,以免丢失事件(比赛条件)。因此,您必须手动“同步”订阅和查询中的数据。