我在开发者控制台中收到以下消息:"
未捕获错误:GraphQL验证错误。
Cannot query field XXXX in YYYY.js.
如果参数/字段/类型,请尝试更新GraphQL架构 最近添加了
我已经尝试运行npm start以更新架构。我做错了什么?
答案 0 :(得分:0)
您可能希望为更新客户端架构创建构建函数,并在package.json中包含一个脚本以使用nodemon自动运行。
这是我使用的脚本。
#!/usr/bin/env babel-node --optional es7.asyncFunctions
import fs from 'fs'
import path from 'path'
import Schema from './schema.js'
import touch from 'touch'
import { graphql } from 'graphql'
import { introspectionQuery, printSchema } from 'graphql/utilities'
const p = '../../../client/schema-build/schema.json';
// Save JSON of full schema introspection for Babel Relay Plugin to use
(async () => {
var result = await (graphql(Schema, introspectionQuery))
if (result.errors) {
console.error(
'ERROR introspecting schema: ',
JSON.stringify(result.errors, null, 2)
)
} else {
fs.writeFileSync(
path.join(__dirname, p),
JSON.stringify(result, null, 2)
)
touch('../../../client/index.js', {}, () => {
process.exit(0)
})
}
})()
// Save user readable type system shorthand of schema
fs.writeFileSync(
path.join(__dirname, p),
printSchema(Schema)
)