reactjs – 使用GraphiQL或GraphQL端点生成schema.json

前端之家收集整理的这篇文章主要介绍了reactjs – 使用GraphiQL或GraphQL端点生成schema.json前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在创建schema.json文件时遇到问题,该文件可以使用babel-relay-plugin进行解析,而不会遇到错误.看一下relay的example文件夹中包含的 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,type {
              name,kind,ofType {
                name
                description
              }
            }
            isDeprecated,deprecationReason,},inputFields {
        name
        description
      }
      interfaces {
        kind
        name
        description
      },enumValues {
        name
        description
        isDeprecated
        deprecationReason
      }
    },mutationType { 
      name
    },directives {
      name,onOperation,onFragment,onField,args {
        name
        description
        defaultValue
      }
    }
  }
}

解决方法

原文链接:https://www.f2er.com/js/158825.html

猜你在找的JavaScript相关文章