有没有办法在运行时在Graphql中创建动态类型/方案?
例如: 如果currentlly我只有'人'类型与字段: 名称, 年龄。
client can run a Graphql query as below:
query {
people(id: "1") {
name
age
}
}
我希望客户能够运行有关带字段的车辆的Graphql查询: 名称, 模型
我想分2步完成:
第1步:
客户端将发送一个新的JsonSchema(通过rest api)
步骤2:
client will be able to run a Graphql query about Vehicles as below:
query {
vehicle(id: "1") {
name
model
}
}
都应该在运行时(没有编译/重启应用程序)