gpt4 book ai didi

graphql - 从 Graphcool 获取随机元素?

转载 作者:行者123 更新时间:2023-12-02 11:00:26 24 4
gpt4 key购买 nike

是否可以从 Graphcool 返回随机 graphql 元素后端?如果是这样,该怎么办?

或者,有关如何为 Graphcool 后端创建自定义查询的任何提示?

最佳答案

实现此目的的最佳方法是使用 API 网关模式。

该方法的想法是将网关服务器置于 Graphcool 的 CRUD API 之上,从而自定义 API。通过这种方法,您需要编写一个额外的 resolver function为您检索随机元素:

const extendTypeDefs = `
extend type Query {
randomItem: Item
}
`

const mergedSchemas = mergeSchemas({
schemas: [graphcoolSchema, extendTypeDefs],
resolvers: mergeInfo => ({
Query: {
randomItem: {
resolve: () => {
return request(endpoint, allItemsQuery).then(data => {
const { count } = data._allItemsMeta
const randomIndex = Math.floor((Math.random() * (count-1)) + 0)
const { id } = data.allItems[randomIndex]
return request(endpoint, singleItemQuery, { id }).then(data => data.Item)
})
},
}
},
}),
})

我创建了一个完整的示例 here 。如果您还有任何其他问题,请告诉我:)

关于graphql - 从 Graphcool 获取随机元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47140782/

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