Apollo React GraphQL VariableTypeMismatch 错误
Posted
技术标签:
【中文标题】Apollo React GraphQL VariableTypeMismatch 错误【英文标题】:Apollo React GraphQL VariableTypeMismatch error 【发布时间】:2018-12-27 15:36:12 【问题描述】:我有一个看起来像这样的突变:
mutation ADD_CATEGORY($id: ID!, $category: ID!)
addCategory(id: $id, category: $category)
它作为 addCategory
传递到我的 React 组件中。
我的handleSave
函数如下所示:
handleSave = () =>
const id, category = this.state;
addCategory( variables: id, category: category.id );
id
和 category.id
是 this.state
对象上的字符串属性。
我收到以下错误:
[GraphQL 错误]:消息:类型验证错误 VariableTypeMismatch:变量类型不匹配,位置:[object 对象],路径:空
查看 GraphiQL 的 API,我发现 updateCategory
突变具有以下参数:
id: ID!
category: [ID!]!
我在这里错过了什么?
【问题讨论】:
【参考方案1】:请确保addCategory
架构接受String
类型的id
和category
。从您的 API 输出来看,category
是 Array
类型。
【讨论】:
以上是关于Apollo React GraphQL VariableTypeMismatch 错误的主要内容,如果未能解决你的问题,请参考以下文章
GraphQL“必须提供查询字符串” graphql-tag react-apollo
React + Apollo:GraphQL 错误数组未传递到组件中