我尝试从 react 应用程序建立 graphql 连接。我的 index.js:import React from 'react';import ReactDOM from 'react-dom';import App from './App';import { ApolloProvider } from '@apollo/client'import { createClient } from
2022-04-01
我尝试使用compose将我的Chat组件与两个查询和一个突变包装在一起。但是,控制台中仍然出现以下错误:Uncaught Error:react-apolloonly supports a query, subscription, or a mutation per HOC.[object Object]had 2 queries, 0 subscriptions and 0 mutations
2017-02-25
在突变后向存储写入查询时出现错误。突变有效,我能够读取突变后的查询。当我将相同的查询写入存储缓存时,我收到以下错误:index.js:2178 Error: Error writing result to store for query:query ($applicationId: Int) {vApplicationApprovalChainList(ApplicationId: $applic
2018-09-25
在我的应用程序的其中一个页面上,我正在使用 graphql apollo 客户端进行两次 api 调用。一个是document,另一个是menu。我需要我的一个组件中的菜单数据,因此我想使用readQuery以避免再次获取它。我正在做的是:const client = useApolloClient();try {const testData = client.readQuery({query:
2019-06-07
我定义了以下 gQL,import gql from 'graphql-tag'const SIGN_UP_QUERY = gql`query {signUpForm @client {firstNameemailpassword}}`并且我将其与 react-apollo 查询一起使用<Query query={SIGN_UP_QUERY}>{({data: {signUpForm: { fir
2019-10-03
因此,我想使用 Apollo Client 反应钩子“useQuery”来查询运行 Apollo Server 的 graphql 后端。但是定义的查询 const 将返回一个错误:Uncaught TypeError:(...) 不是函数,因此页面根本没有呈现。我的 ApolloClient 和提供程序设置如下:index.js:import React from 'react';import
2020-01-24
我有一个相当简单的组件:import {useQuery} from '@apollo/react-hooks';import resolvers from '../../resolvers';const DashboardComponent = () => {const {data} = useQuery(resolvers.ReturnAllMovies);const movies = dat
2021-08-27
我有这段代码import React from "react";import { useQuery } from "@apollo/react-hooks";import gql from "graphql-tag";const FETCH_POSTS_QUERY = gql`{getMovies {idtitle}}`;function Home() {const { loading, data
2022-05-07
我正在使用 react-apollo 进行 graphql 查询。我想显示类别的单个对象,因此我需要一个 id我可以从 navigation.state.params.id 获取。我做了以下操作,但收到错误“无法读取未定义的属性‘skip’”。我应该如何解决这个问题?这是我的代码class CategoryDetail extends React.PureComponent {render() {
2017-11-08
我有以下查询:import { gql } from 'apollo-boost';const GetUserInfo = gql`query getUserInfo($id: MongoID!){userById(_id: $id){local{username...}}`;export {GetUserInfo} ;然后我已将查询绑定到我的“React.Component”import Re
2019-01-03
我正在遵循此 Apollo Pagination 教程:Apollo Pagination 示例我的问题摘要:我有一个已知有效的 GraphQL 查询,可在 Playground 中使用。当我尝试获取数据并在 React 组件中使用它时(如上面的 Apollo 链接中所述),我收到以下错误:“TypeError:无法读取未定义的属性‘errorlogsConnection’”但是,当我在 Web
2019-10-29
GraphQL 查询在此处定义const countryQuery = gql`query getQuery($filter: _CountryFilter!) {Country(filter: $filter) {_idnamecapitalpopulationnativeName}}`pages/search.jsexport default function Search() {const
2020-08-13