Skip to content

cli tool of graphql-import for schema file concatenation

Notifications You must be signed in to change notification settings

prashant-shahi/gql-import-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!
}