如何从`gql`对象获取查询名称?

时间:2019-10-11 08:40:25

标签: graphql apollo graphql-tag

我使用graphql-tag中的gql。 假设我有一个gql对象,定义如下:

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

必须有一种从中获取AccountInfo的方法。我该怎么做?

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:1)

如果您使用 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"