如何在 api 服务器中包含字段并在将结果返回给 Graphql 中的客户端之前将其删除

How to include fields in api server and remove it before returning to results to client in Graphql

我有一个 Node.js GraphQL 服务器。从客户端,我正在尝试使用这样的查询获取所有用户条目:

{
    user {
        name
        entries {
            title
            body
        }
    }
}

在 Node.js GraphQL 服务器中,但是我想 return 基于条目对象中的 publishDateexpiryDate 当前有效的用户条目。

例如:

{
    "user": "john",
    "entries": [
        { 
          "title": "entry1",
          "body": "body1",
          "publishDate": "2019-02-12",
          "expiryDate": "2019-02-13"
        },
        { 
          "title": "entry2",
          "body": "body2",
          "publishDate": "2019-02-13",
          "expiryDate": "2019-03-01"
        },
        { 
          "title": "entry3",
          "body": "body3",
          "publishDate": "2020-01-01",
          "expiryDate": "2020-01-31"
        }
    ]
}

应该return这个

{
    "user": "john",
    "entries": [
        { 
          "title": "entry2",
          "body": "body2",
          "publishDate": "2019-02-13",
          "expiryDate": "2019-03-01"
        }
    ]
}

entries 是通过 delegateToSchema 调用 (https://www.apollographql.com/docs/graphql-tools/schema-delegation.html#delegateToSchema) 获取的,我没有将 publishDate 和 expiryDate 作为查询参数传递的选项。本质上,我需要获取结果,然后在内存中过滤它们。

我面临的问题是原始查询中没有 publishDateexpiryDate 来支持这一点。有没有办法将这些字段添加到 delegateToSchema 调用,然后在将它们发送回客户端时删除它们?

您正在寻找transformResult

实施细节是:

  1. delegateToSchema你需要定义transforms数组。
  2. Transform你需要定义transformResult过滤结果的函数。
  3. 如果您能够将参数发送到远程 GraphQL 服务器,那么您应该使用 transformRequest