Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 464 Bytes

File metadata and controls

27 lines (20 loc) · 464 Bytes

gql-import-cli

cli tool of graphql-import for schema file concatenation

Usage

Download the appropriate binary as per your machine from the release page or the bin folder.

$ ./bin/gql-import-cli-linux ./example/schema.graphql

type Blog {
  posts: [Post]
}

type Post {
  comments: [Comment]
  id: ID!
  text: String!
  tags: [String]
}

type Comment {
  id: ID!
  text: String!
}