gpt4 book ai didi

reactjs - react 继电器: Adding data to edges

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

我将首先介绍我的应用程序:简单的投票应用程序,用户可以在其中创建民意调查并进行投票。简单。
目前我的graphql模式由用户类型、民意调查类型和投票类型组成,其中用户和民意调查与其投票具有一对多关系,使用中继连接。投票类型包含对其投票者和民意调查的引用、时间戳和实际投票值。

现在,据我了解,使用连接而不是规定 graphql 列表的优点之一是能够在边缘存储数据(除了分页等等......)。我怎样才能做到这一点?

如果确实可能,我的计划是摆脱投票类型,直接通过连接连接用户和他投票的民意调查,并将投票值及其时间戳存储在连接边缘上。

如果很重要,选民和他的民意调查之间的连接应该是双向的,即每个用户都连接到他投票的民意调查,并且每个民意调查都连接到其选民。

最佳答案

听起来你已经非常接近拥有你想要的东西了。我认为使用投票类型作为用户和投票之间的中间人是一个很好的解决方案。这样做将允许您发出如下所示的查询:

// Direction 1: User -> Vote -> Poll
query GetUser($id: "abc") {
getUser(id: $id) {
username
votes(first: 10) {
edges {
node {
value
poll {
name
}
}
cursor
}
}
}
}

// Direction 2: Poll -> Vote -> User
query GetPoll($id: "xyz") {
getPoll(id: $id) {
name
votes(first: 10) {
edges {
node {
value
user {
username
}
}
cursor
}
}
}
}

在此示例中,您的投票类型是沿边缘存储信息的实体。您是正确的,连接相对于列表的一个优点是您可以沿边缘存储信息,但我想说更大的好处是能够对大量对象进行分页。

要在服务器上实现此功能,您必须为用户和投票上的连接字段(即上例中的“投票”字段)编写自定义解析方法。根据您存储数据的方式,这会发生变化,但这里有一些关于想法的伪代码。

type Vote {
value: String,
poll: Poll, // Both poll & user would have resolve functions to grab their respective object.
user: User
}

type VoteEdge {
node: Vote,
cursor: String // an opaque cursor used in the 'before' & 'after' pagination args
}

type PageInfo {
hasNextPage: Boolean,
hasPreviousPage: Boolean
}

type VotesConnectionPayload {
edges: [VoteEdge],
pageInfo: PageInfo
}

const UserType = new GraphQLObjectType({
name: 'User',
fields: () => ({
id: {
type: new GraphQLNonNull(GraphQLID),
description: "A unique identifier."
},
username: {
type: new GraphQLNonNull(GraphQLString),
description: "A username",
},
votes: {
type: VotesConnectionPayload,
description: "A paginated set of the user's votes",
args: { // pagination args
first: {
type: GraphQLInt
},
after: {
type: GraphQLString
},
last: {
type: GraphQLInt
},
before: {
type: GraphQLString
}
}
resolve: (parent, paginationArgs, ctxt) => {

// You can pass a reference to your data source in the ctxt.
const db = ctxt.db;

// Go get the full set of votes for my user. Preferably this returns a cursor
// to the set so you don't pull everything over the network
return db.getVotesForUser(parent.id).then(votes => {

// Assume we have a pagination function that applies the pagination args
// See https://facebook.github.io/relay/graphql/connections.htm for more details
return paginate(votes, paginationArgs);

}).then((paginatedVotes, pageInfo) => {

// Format the votes as a connection payload.
const edges = paginatedVotes.map(vote => {

// There are many ways to handle cursors but lets assume
// we have a magic function that gets one.
return {
cursor: getCursor(vote),
node: vote
}

});

return {
edges: edges,
pageInfo: pageInfo
}
})
}
}
})
});

您必须在相反方向的民意调查类型中执行类似的操作。要将对象添加到连接,您需要做的就是创建一个指向正确用户和帖子的投票对象。 db.getVotesForUser() 方法应该足够智能,能够意识到这是一个一对多连接,然后可以提取正确的对象。

创建处理连接的标准方法可能是一项艰巨的任务,但幸运的是,有一些服务可以帮助您开始使用 GraphQL,而无需自己实现所有后端逻辑。我为这样的一项服务工作 https://scaphold.io如果您有兴趣,我们很乐意与您进一步讨论该解决方案!

关于reactjs - react 继电器: Adding data to edges,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37983078/

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