Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prashant-shahi/gql-import-cli

cli tool of graphql-import for schema file concatenation
https://github.com/prashant-shahi/gql-import-cli

graphql graphql-import graphql-import-cli graphql-schema schema

Last synced: about 1 month ago
JSON representation

cli tool of graphql-import for schema file concatenation

Awesome Lists containing this project

README

        

# 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](https://github.com/prashant-shahi/gql-import-cli/releases) or the `bin` folder.

```bash
$ ./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!
}
```