0.2.1 • Published 7 years ago

fetch-graphql-schema v0.2.1

Weekly downloads
1,578
License
MIT
Repository
github
Last release
7 years ago

fetch-graphql-schema

NPM version Build Status Test coverage Dependency Status

fetch GraphQL schema via introspection query

Install

$ npm install fetch-graphql-schema

Usage

const fetchSchema = require('fetch-graphql-schema');

fetchSchema('http://localhost:8080/graphql')
  .then(schemaJSON => {
    /**
     * {
     *   "data": {
     *     "__schema": {
     *       "queryType": {
     *         "name": "Query"
     *          ....
     */
  });

fetchSchema('http://localhost:8080/graphql', { readable: true })
  .then(clientSchema => {
    /**
     * type User implements Node {
     *   id: ID!
     *   name: String!
     * }
     */
  });
//=>

API

fetchGraphqlSchema(url, options)

url

Required Type: string

URL of GraphQL server.

options

readable

Type: boolean Default: false

resolve .graphql instead of .json.

CLI

Usage

$ fetch-graphql-schema <schemaUrl>

Options

-o, --output    Specify an output filename.
-r, --readable  Resolve .graphql instead of .json.

Examples

$ fetch-graphql-schema http://api.server/graphql -o schema.json
$ fetch-graphql-schema http://api.server/graphql -o schema.graphql -r

License

MIT © C.T. Lin