GraphQL:读取架构文件并追加数据

时间:2019-12-27 10:27:49

标签: php graphql schema

我想读取GraphQL模式文件并将数据附加到该文件中。如何添加?

graphql中是否有任何特殊方式可以附加它或使用php?

  

我的架构文件:

input CustomInput {
    new: TypeInput @doc(description: "New Label")
    old: TypeInput @doc(description: "Old Label")
}
  

预期输出:

input CustomInput {
    new: TypeInput @doc(description: "New Label")
    old: TypeInput @doc(description: "Old Label")
    update: TypeInput @doc(description: "Update Label")
}

请帮助我。

谢谢。

0 个答案:

没有答案