我需要一些在Rails中结构化GraphQL API的方法。 我看到大多数开发人员都会像
那样执行GraphQL查询和变异的大型链{
mutation {
updateProfile(firstName: "Luke", lastname: "Skywalker") {
id
firstName
lastName
}
}
}
{
mutation {
deleteProfile()
}
}
等
我想要一些类似名称空间的东西。例子
例如
{
mutation {
me {
profile {
update(firstName: "Luke", lastname: "Skywalker") {
id
firstName
lastName
}
}
}
}
}
谢谢大家的回答