我在创建schema.json文件时遇到问题,该文件可以使用babel-relay-plugin解析而不会遇到错误。看一下relay的示例文件夹中包含的schema.json文件,我尝试在GraphiQL中复制查询,但我似乎无法做到正确。我使用Laravel作为后端。这是我可以通过GraphiQL完成的,还是将请求发送到GraphQL端点并保存响应?
尝试解析schema.json文件时发生错误:
Cannot read property 'reduce' of undefined while parsing file: /Users/username/Sites/Homestead/Code/ineedmg-graphql/resources/assets/js/app.js
使用GraphiQL的最后一次尝试:
{
__schema {
queryType {
name
},
types {
kind,
name,
description,
fields {
name,
description,
type {
name,
kind,
ofType {
name
description
}
}
isDeprecated,
deprecationReason,
},
inputFields {
name
description
}
interfaces {
kind
name
description
},
enumValues {
name
description
isDeprecated
deprecationReason
}
},
mutationType {
name
},
directives {
name,
description,
onOperation,
onFragment,
onField,
args {
name
description
defaultValue
}
}
}
}
答案 0 :(得分:15)
烨!如果您查看示例,可以看到它们通过执行查询生成schema.json
文件:https://github.com/relayjs/relay-starter-kit/blob/84da9351d100f97e6ed4f08bc70a893779e61c29/scripts/updateSchema.js#L11
这个查询实际上只是来自graphql-js的这个特定查询:https://github.com/graphql/graphql-js/blob/v0.4.12/src/utilities/introspectionQuery.js#L11-L89。