开发者问题收集

[GraphQL 错误]:消息:未提供所需类型“MongoID!”的变量“$id”。

2019-01-03
4666

我有以下查询:

import { gql } from 'apollo-boost';
const GetUserInfo = gql`
query getUserInfo($id: MongoID!){
    userById(_id: $id){
      local{
        username
...
    }
  }
`;

export  {GetUserInfo} ;

然后我已将查询绑定到我的“React.Component”

import React from "react";
...
import { GetUserInfo } from "../../queries/queries";
import { graphql } from 'react-apollo';



class Dashboard extends React.Component {
  constructor(props) {
    super(props);
...

Dashboard.propTypes = {};



export default graphql(GetUserInfo, {
  options: (props) => {
    return {

          variables: {
              _id: props.ID
      }
    }
  }
})(Dashboard);

我确定 props.ID 相当于 MongoDB ID。我还确定正在读取父组件的 props。

上述代码导致以下错误:

[GraphQL 错误]:消息:未提供所需类型“MongoID!”的变量“$id”。位置:[object Object],路径:未定义

控制台错误

任何反馈都将不胜感激。谢谢!

1个回答

查询中使用的变量是 $id ;查询需要使用选项中传递的此变量来执行。

当前传递了 _id 的值,这是查询中从未使用过的另一个变量。

两个变量可以同名。

export default graphql(GetUserInfo, {
  options: (props) => {
    return {

          variables: {
              id: props.ID
      }
    }
  }
})(Dashboard);
Oluwafemi Sule
2019-01-03