gpt4 book ai didi

reactjs - 如何使用 React 在状态中加入多个 Apollo 查询?

转载 作者:行者123 更新时间:2023-12-03 13:45:27 25 4
gpt4 key购买 nike

我刚开始将 React 和 Apollo 应用于 MongoDB,但遇到以下问题:

我有一张表,其中有(ID - ID_A - ID_B),我对此进行了查询并返回一个数组。之后,我必须在另一个表中询问数组中的每个组件与 ID_A 的匹配。

所以我做了:

{this.props.firstGet.map((data, index) => {
const id = data.ID_A;
return (
<Query key={this.props.firstGet.id} query={QUERY} variables={{ id }}>
{({ loading, error, data }) => {
if (loading) return 'Loading...';
if (error) return `Error ${error.message}`;
this.test = this.test.concat({...data.getStartup, ...this.state.applicants[index]});
return(this.test.length === this.props.getApplicants.length ?
<LastTable startups={this.test}></LastTable>
: '')
}
}
</Query>
);

哪一种是解决我的问题的最佳实践?我需要第一个数组,其中每个对象都有一个复合体,并具有第二个表的答案。有没有办法直接进入主状态而不使用 LastTable 例如?

<小时/>

我是如何解决的:1)在MainTable MongoDB schema中添加:

ID_A: {
type: mongoose.Schema.ObjectId,
ref: 'Table1'
}

2)在graphQl shcema中:ID_A:Table1Object

3)在解析器中添加.populate('ID_A')

我现在将尝试插入一个新的,也许我有问题,但如果使用 MainTable ID_A 字段中的 ID,连接效果很好

最佳答案

这可以在 graphql 服务器端处理。您只需要请求从服务器端解析并返回这些依赖字段即可。

举个例子 -

1.创建包含字段和子字段的架构 例如

 type Person {
id: ID!
cars: [Car]
}

type Car {
id:ID!
ownerId: Int!
model: String
}

2.需要在服务器端编写嵌套解析器

人物解析器:

import Query from './query';
import Mutation from './mutation';

export default {
Query, //<----- person query resolver
Mutation, //<----- person mutation resolver if any
Person: { . //<----- Nested fields resolver on Person
cars: (parent, args, { dataSources }) => {
const { id: ownerId } = parent;
// return from db cars owned by person
return dataSources.carAPI.getCarsByOwnerId(ownerId);
},
},
};

我正在使用dataSource在这里,但您可以直接使用数据库解析。

3.客户端查询

 export const GET_PERSON_WITH_CARS = gql`
query getPersonWithCars($id: ID!) {
person(id: $id) {
id
cars {
id,
ownerId,
model,
}
}
`

希望对你有帮助

关于reactjs - 如何使用 React 在状态中加入多个 Apollo 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54073294/

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