4

我有一个关于 GraphQL 查询/突变的响应在以下每种情况下应该是什么样子的问题:

  1. 有结果,没有错误
  2. 出了点问题,一个或多个错误
  3. 既有结果又有一些错误

我不确定后者是否可能,但我似乎记得在某处读过它可能发生。例如,在多个突变的情况下,假设有两个,其中每个突变都是按顺序处理的。如果第一个突变很好,我认为上面的案例#3 可能会发生,但是在第二个突变的执行过程中会发生错误,但我不确定。

无论如何,响应应该如何?像下面的那些?(JSON 中的示例,每个都对应于之前的案例。)或者还有其他更惯用的方法吗?也许 Relay 提供了一些关于它应该是什么样子的指导方针?我找不到任何好的资源。

1:

{
  "data": {
    ...
  }
}

2:

{
  "errors": [
    {
      ...
    },
    ...
  ]
}

3:

{
  "data": {
    ...
  },
  "errors": [
    {
      ...
    },
    ...
  ]
}

谢谢。

4

1 回答 1

2

是的,您的示例回复对我来说很合适。这是“案例3”的更详细示例。

在其中一个字段中出现错误的示例查询

query MyQuery {
  viewer {
    articles(first: 1) {
      edges {
        node {
          title
          tags # we'll introduce an error in the schema here
        }
      }
    }
  }
}

示例响应

{
  "data": {
    "viewer": {
      "articles": {
        "edges": [
          {
            "node": {
              "title": "Sample article title",
              "tags": null
            }
          }
        ]
      }
    }
  },
  "errors": [
    {
      "message": "Cannot read property 'bar' of undefined",
      "locations": [
        {
          "line": 7,
          "column": 11
        }
      ]
    }
  ]
}
于 2015-10-25T23:10:33.793 回答