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);
});