错误:graphql_1.execute(...).then is not a function
来源:13-3 实现 GraphQL 的 model-query-schema 演示图形化查询命令
魂淡_0002
2018-08-10
调用
const xxx = {
type: MediaQueryType,
args: {},
resolve (root, params, options){
const data = api.xxx()
return data
}
}
api 方法中的实现
export async function xxx () {
return axios.get(`${BASE_URL}/xx/xxxxx`)
}
提示错误:graphql_1.execute(...).then is not a function
resolve 中用 axios 获取数据不可行么?
写回答
1回答
-
魂淡_0002
提问者
2018-08-11
已解决
10
相似问题