如何获取graphQl片段?

发布于 2025-01-10 23:00:11 字数 704 浏览 0 评论 0原文

我需要将片段设置为我的 gql。这是工作代码:

const findEntity = gql`
  query findEntity($pagination: Pagination, $sort: Sort) {
    organizationList(pagination: $pagination, sort: $sort) {
      data {
        _id
        name
      }
    }
  }
`;

此代码不起作用:

const TEST_FRAGMENT = gql`
  fragment organizationList on OrganizationsPage {
    data {
      _id
      name
    }
  }
`;

const findEntity = gql`
  query findEntity($pagination: Pagination, $sort: Sort) {
    organizationList(pagination: $pagination, sort: $sort) {
      ${TEST_FRAGMENT}
    }
  }
`;

错误:[{message:“无法查询类型“OrganizationsPage”上的字段“fragment”。”,…},…]

我做错了什么?我想我重复了文档样本......

I need to set fragment to my gql. It is working code:

const findEntity = gql`
  query findEntity($pagination: Pagination, $sort: Sort) {
    organizationList(pagination: $pagination, sort: $sort) {
      data {
        _id
        name
      }
    }
  }
`;

This code doesn't work:

const TEST_FRAGMENT = gql`
  fragment organizationList on OrganizationsPage {
    data {
      _id
      name
    }
  }
`;

const findEntity = gql`
  query findEntity($pagination: Pagination, $sort: Sort) {
    organizationList(pagination: $pagination, sort: $sort) {
      ${TEST_FRAGMENT}
    }
  }
`;

errors: [{message: "Cannot query field "fragment" on type "OrganizationsPage".",…},…]

What I do wrong? I think I repeated documentation sample...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对风讲故事 2025-01-17 23:00:11

片段使用伪扩展语法,您需要将它们包含在查询中。为了符合约定,我还对片段名称使用了大写字母。

const findEntity = gql`
  ${TEST_FRAGMENT}
  query findEntity($pagination: Pagination, $sort: Sort) {
    organizationList(pagination: $pagination, sort: $sort) {
      ...OrganizationListFields
    }
  }
`;

Fragments use pseudo-spread syntax and you need to include them in the query. I also used caps for the fragment name for convention compliance.

const findEntity = gql`
  ${TEST_FRAGMENT}
  query findEntity($pagination: Pagination, $sort: Sort) {
    organizationList(pagination: $pagination, sort: $sort) {
      ...OrganizationListFields
    }
  }
`;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文