我正在使用next.js的演示with-apollo和PostList
中的changing the query进行错误查询以生成错误。
这是新的错误查询:
query allPosts($first: Int!, $skip: Int!) {
allPosts(orderBy: createdAt_DESC, first: $first, skip: $skip) {
wrong-id
wrong-title
votes
url
createdAt
}
_allPostsMeta {
count
}
}
但是,
在控制台by this line上打印错误时,Query
组件上的The error parameter仍未定义。
那么到底是什么错误被实际错误填充?