gpt4 book ai didi

java - 如何在 GraphQL Java 上拆分模式

转载 作者:行者123 更新时间:2023-12-05 08:11:48 27 4
gpt4 key购买 nike

我正在为网站新闻开发 API GraphQL。但是我遇到了一个问题,我拥有一个具有多个突变、查询和类型的模式。我想将架构拆分为多个特定于其类型的架构。

这可能吗?

最佳答案

const countryType = `
type Country {
_id: ID!
name: String!
region: [Region!]!
}
`

const regionType = `
type Region {
_id: ID!
name: String!
countries: [Country!]
}
`

const schema = `
${countryType}
${regionType}

# ... more stuff ...
`

module.exports = buildSchema(schema);

关于java - 如何在 GraphQL Java 上拆分模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49825745/

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