graphql.js中是否有API可以保存架构以备将来使用?

时间:2018-11-29 02:10:03

标签: graphql graphql-js

graphql(schema, '{ hello }').then((response) => {
  console.log(response);
});
graphql(schema, '{ hi}').then((response) => {
  console.log(response);
});

如果要针对graphql.js中的一个模式进行多个查询,则需要多次调用graphql方法,并且每次需要将schema传递给它时。

是否有可以为我保留schema的API?

也许是这样的:

let agent = graphql(schema)
agent.query('{ halo}').then((response) => {
  console.log(response);
});

0 个答案:

没有答案