0

我有一个我自己似乎无法解决的问题。

连同基本的 Query、Mutation 等类型,我做了以下类型定义:

module Types
  UserType = GraphQL::ObjectType.define do
    name 'User'
    description 'A user'

    implements GraphQL::Relay::Node.interface
    global_id_field :id

    field :email, !types.String, 'Email address'

    connection :docs, DocType.connection_type, 'Available docs'
  end  
end

然后我尝试用以下方式查询它:

query FileListQuery(
  $after: String
  $first: Int
) {
  viewer {
    currentUser {
      docs(first: $first, after: $after) {
        edges {
          node {
            id
            name
            __typename
          }
          cursor
        }
        pageInfo {
          endCursor
          hasNextPage
          hasPreviousPage
          startCursor
        }
      }
      id
    }
    id
  }
}

我将以下内容作为查询变量传递:

{
  "first": 1,
  "after": null
}

问题是它通过以下方式摆脱困境:

{
  "errors": [
    {
      "message": "Int isn't a defined input type (on $first)",
      "locations": [
        {
          "line": 3,
          "column": 3
        }
      ],
      "fields": [
        "query FileListQuery"
      ]
    }
  ]
}

老实说,我不知道它为什么抱怨 Int 类型……</p>

如果我摆脱$first了请求中有问题的查询变量,它就可以正常工作。

这:

query FileListQuery(
  $after: String
) {
  viewer {
    currentUser {
      docs(first: 10, after: $after) {
        edges {
          node {
            id
            name
            __typename
          }
          cursor
        }
        pageInfo {
          endCursor
          hasNextPage
          hasPreviousPage
          startCursor
        }
      }
      id
    }
    id
  }
}

产生这个:

{
  "data": {
    "viewer": {
      "currentUser": {
        "docs": {
          "edges": [
            {
              "node": {
                "id": "1",
                "name": "First Doc",
                "__typename": "Doc"
              },
              "cursor": "MQ=="
            }
          ],
          "pageInfo": {
            "endCursor": "MQ==",
            "hasNextPage": false,
            "hasPreviousPage": false,
            "startCursor": "MQ=="
          }
        },
        "id": "1"
      },
      "id": "VIEWER"
    }
  }
}

关于如何解决这个问题的任何提示和想法?我使用的是 graphql gem v1.6.3。

4

1 回答 1

0

目前,似乎存在一个错误,graphql-ruby它阻止了模式中未明确使用的类型被传播。在 GitHub 上查看此问题:https ://github.com/rmosolgo/graphql-ruby/issues/788#issuecomment-308996229

Int要修复错误,必须在架构中的某处包含一个字段。原来我一个都没有。哎呀。

这为我修复了它:

# Make sure Int is included in the schema:
field :testInt, types.Int
于 2017-06-16T12:04:16.503 回答