Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/prashant-shahi/gql-import-cli
- Owner: prashant-shahi
- Created: 2020-04-17T10:13:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T23:27:51.000Z (about 1 year ago)
- Last Synced: 2024-10-12T13:21:20.408Z (2 months ago)
- Topics: graphql, graphql-import, graphql-import-cli, graphql-schema, schema
- Language: JavaScript
- Homepage:
- Size: 35.1 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.graphqltype Blog {
posts: [Post]
}type Post {
comments: [Comment]
id: ID!
text: String!
tags: [String]
}type Comment {
id: ID!
text: String!
}
```