0

我在 graphql-tools 中使用 makeRemoteExecutableSchema 来检索远程模式,然后将其与本地模式合并。我想为远程模式上的类型名称添加一个前缀。是否有捷径可寻?

4

1 回答 1

0

听起来你想做一个模式转换。

我假设您想在字段名称前加上 someprefix_field_name 之类的前缀,就像您在数据库中为表名添加前缀一样?有很多文档,首先在这个例子中:

https://github.com/hasura/schema-stitching-examples/blob/master/schema-transform/index.js

并查看RenameRootFields()graphql-tools 中的函数,如此处所述:

https://www.apollographql.com/docs/graphql-tools/schema-transforms#Modifying-root-fields

于 2018-12-10T17:04:39.090 回答