3

给定Apollo Server的 GraphQL 模式和解析器以及 GraphQL 查询,有没有办法在解析器函数中创建所有请求字段(在对象或地图中)的集合?

对于一个简单的查询,很容易从info解析器的参数重新创建这个集合。

给定一个模式:

type User {
  id: Int!
  username: String!
  roles: [Role!]!
}

type Role {
  id: Int!
  name: String!
  description: String
}

schema {
  query: Query
}

type Query {
  getUser(id: Int!): User!
}

和解析器:

Query: {
  getUser: (root, args, context, info) => {
    console.log(infoParser(info))

    return db.Users.findOne({ id: args.id })
  }
}

使用这样的简单递归infoParser函数:

function infoParser (info) {
  const fields = {}

  info.fieldNodes.forEach(node => {
    parseSelectionSet(node.selectionSet.selections, fields)
  })

  return fields
}

function parseSelectionSet (selections, fields) {
  selections.forEach(selection => {
    const name = selection.name.value

    fields[name] = selection.selectionSet
      ? parseSelectionSet(selection.selectionSet.selections, {})
      : true
  })

  return fields
}

以下查询导致此日志:

{
  getUser(id: 1) {
    id
    username
    roles {
      name
    }
  }
}

=> { id: true, username: true, roles: { name: true } }

事情很快就会变得很丑陋,例如当您在查询中使用片段时:

fragment UserInfo on User {
  id
  username
  roles {
    name
  }
}

{
  getUser(id: 1) {
    ...UserInfo
    username
    roles {
      description
    }
  }
}

GraphQL 引擎在执行时正确忽略重复、(深度)合并等查询字段,但它没有反映在info参数中。当您添加联合内联片段时,它会变得更加复杂。

考虑到 GraphQL 的高级查询功能,有没有办法构建查询中请求的所有字段的集合?

有关info参数的信息可以在 Apollo 文档站点graphql-js Github repo中找到。

4

1 回答 1

2

我知道这已经有一段时间了,但如果有人最终来到这里,Jake Pusareti有一个名为graphql-list-fields的npm 包可以做到这一点。它处理片段并跳过和包含指令。你也可以在这里查看代码。

于 2019-08-08T14:22:44.680 回答