具有Apollo的Next.js-错误参数始终未定义

时间:2019-07-11 22:01:37

标签: javascript graphql apollo next.js

我正在使用next.js的演示with-apolloPostList中的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仍未定义。

那么到底是什么错误被实际错误填充?

0 个答案:

没有答案