gpt4 book ai didi

reactjs - 将参数传递给 react-apollo-hooks useQuery

转载 作者:行者123 更新时间:2023-12-03 23:12:09 24 4
gpt4 key购买 nike

使用 react-apollo-hook 时如何将参数传递给 useQuery?

这不起作用:

  const { data, loading, error } = useQuery(GET_DATA,
{ variables: { id: 'testId' }});

和查询本身:
export const GET_DATA = gql`
{ query ($id: String) {
document(id: $uid) {
uid
}
}
}
`;

最佳答案

您的查询无效,因为 1) 它包含在一对无关的大括号中,2) 您引用了一个名为 uid 的变量,而您定义的变量实际上称为 id 。更正后,此查询将如下所示:

query ($id: String) {
document(id: $id) {
uid
}
}

请记住,我不知道您的实际架构是什么,因此如果任何字段或参数不存在或类型错误,此查询仍然可能无效。

关于reactjs - 将参数传递给 react-apollo-hooks useQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56223625/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com