6

我使用gql来自graphql-tag。假设我有一个gql这样定义的对象:

const QUERY_ACCOUNT_INFO = gql`
  query AccountInfo {
    viewer {
      lastname
      firstname
      email
      phone
      id
    }
  }
`

一定有办法从中得到AccountInfo。我该怎么做?

4

2 回答 2

7

返回的gql是一个DocumentNode对象。一个 GraphQL 文档可以包含多个定义,但假设它只有一个并且它是一个操作,你可以这样做:

const operation = doc.definitions[0]
const operationName = operation && operation.name

如果我们允许可能有碎片,我们可能想做:

const operation = doc.definitions.find((def) => def.kind === 'OperationDefinition')
const operationName = operation && operation.name

请记住,在同一个文档中存在多个操作在技术上是可能的,但是如果您针对自己的代码运行此客户端,则该事实可能无关紧要。

核心库还提供了一个实用函数:

const { getOperationAST } = require('graphql')
const operation = getOperationAST(doc)
const operationName = operation && operation.name
于 2019-10-11T11:30:28.610 回答
4

如果您使用的是 Apollo,那么还有一个明确的getOperationName,它似乎没有记录,但适用于我所有的用例。

import { getOperationName } from "@apollo/client/utilities";

export const AdminListItemsDocument = gql`
  query AdminListItems(
    $first: Int
    $after: String
    $before: String
    $last: Int
  ) {
    items(
      first: $first
      after: $after
      before: $before
      last: $last
    ) {
      nodes {
        id
        name
      }
      totalCount
      pageInfo {
        hasPreviousPage
        hasNextPage
        startCursor
        endCursor
      }
    }
  }
`;

getOperationName(AdminListBlockLanguagesDocument); // => "AdminListItems"
于 2021-04-01T13:19:58.230 回答