在 GraphQL Mutate 函数中将 ID 作为正确的变量类型传递

Posted

技术标签:

【中文标题】在 GraphQL Mutate 函数中将 ID 作为正确的变量类型传递【英文标题】:Passing ID as correct variable type in GraphQL Mutate function 【发布时间】:2018-06-16 11:11:11 【问题描述】:

我正在尝试通过使用 this.props.mutate 传入参数来使用 GraphQL 编辑项目。我收到以下错误... 错误:GraphQL 错误:所需类型 ID 的变量 $id!没有提供。因此,问题在于我将错误的 ID 类型传递给了 mutate 函数。任何人都知道如何将 ID 类型作为正确的类型传递给 mutate 函数?或者我可以将 ID 类型从字符串转换为正确的类型以作为变量传递给 mutate 函数?谢谢

我正在使用本地组件状态来保存预先填写表单的值,以防您想知道我为什么要使用本地状态

import UPDATE_CHAT_MUTATIONS from '../graphql/mutations/updateChat';

class EditChat extends React.Component 
  state = 
    text: '',
    id: ''
  

  componentWillMount() 
    this._onEditLoad()
  

  _onEditLoad = () => 
    const chat = this.props.navigation.state.params;
    this.setState( text: chat.text, id: chat._id )
  

  _onChangeText = text => this.setState( text );

  _onEditPress = async () => 
    const  id, text  = this.state;
    await this.props.mutate(
      variables: 
        _id: id,
        text
      
    );

    Keyboard.dismiss();
    this.props.navigation.goBack(null);
  

【问题讨论】:

【参考方案1】:

我设法让它工作!我在客户端的 graphql 突变上犯了一个错误。以下是有效的代码!希望这会帮助那些面临同样问题的人。干杯

import  gql  from 'react-apollo';

export default gql`
  mutation updateChat($_id: ID!, $text: String!) 
    updateChat(_id: $_id, text: $text) 
      text
      _id
      updatedAt
    
  
`;

【讨论】:

以上是关于在 GraphQL Mutate 函数中将 ID 作为正确的变量类型传递的主要内容,如果未能解决你的问题,请参考以下文章

使用 Sequelize 在 GraphQL 查询中将日期时间字段输出为字符串

在 gatsby 中将 typescript 标记的联合添加到 graphql 查询的结果

如何在 R 中使用 dplyr mutate 函数来计算运行余额?

在 apollo-server 中将网关上的联合类型转换为服务 GraphQL 中的标量类型

在 GraphQL 中将参数从根传递到子查询

如何在 python 函数中编写 graphQL 突变?