This project provides a CLI tool to parse GraphQL schemas and generate federated GraphQL schemas for use in a GraphQL Federation gateway. All GraphQL types will be prefixed with the namespace and service name, allowing you to have multiple services under the same namespace without conflicts. Eg.: PlatformUsers__User
, PlatformUsers__Post
, etc.
Run it on a directory containing GraphQL schema files, and it will output a federated GraphQL schema to publish to Schema Registry. All schema files will be parsed and merged into a single schema scoped by a provided namespace and service name.
For what purpose should you use this tool?
- Building a GraphQL supergraph: Use it to create a federated schema for a GraphQL gateway, allowing you to combine multiple services into a single schema and namespace them properly.
# Parse GraphQL schemas in the ./schemas directory
gql-federation-schema-parser parse -d ./schemas -s users -n platform
# This transforms your schemas into a federated format:
# User -> PlatformUsers__User
# Query.user -> Query.platform.users.user
Feature | Description | Supported |
---|---|---|
Recursive schema parsing | Parses all .graphql files in a directory and its subdirectories |
âś… |
Type prefixing | Add namespace and service prefixes to types | âś… |
Federation support | Generate federated query structures | âś… |
Directive preservation | Maintain GraphQL directives in output | âś… |
Multiple type support | Support for all GraphQL type kinds (scalars, enums, interfaces, unions, inputs, objects) | âś… |
parse
: Parses GraphQL schema files and generates federated GraphQL schemas.help
: Displays help information for the CLI tool.
The parse command requires the following parameters:
gql-federation-schema-parser parse [options]
Options:
-d, --directory <path> Directory containing GraphQL schema files
-s, --service-name <name> Service name for type prefixing
-n, --namespace <name> Namespace for grouping services
-o, --output-file <file> Output file name (optional)
--write-to-file Write output to file instead of stdout
-D, --debug Enable debug mode
-S, --simple Disable colors on terminal
-h, --help Display help for command
Example:
gql-federation-schema-parser parse -d ./schemas -s users -n platform
To get help on the CLI, run --help
or -h
on any command:
gql-federation-schema-parser --help
# or
gql-federation-schema-parser -h
# On a specific command
gql-federation-schema-parser parse --help
# or
gql-federation-schema-parser parse -h
You can enable debug mode to see detailed logs of the parsing process. This is useful for troubleshooting issues with schema files or understanding how the tool works.
Use -D
or --debug
on any command to enable global debug mode:
gql-federation-schema-parser parse -d ./schemas -s myService -n myScope -D
# or
gql-federation-schema-parser parse -d ./schemas -s myService -n myScope --debug
Note
Debug mode is a global setting and will apply to all commands. It will log detailed information about the parsing process, including file paths, and other relevant information.
With the following schema files in a directory and these settings:
--service-name
:users
--namespace
:platform
The resulting GraphQL schema will be:
# Graphql root definitions
directive @oneOf on INPUT_OBJECT
scalar ID
scalar String
scalar Boolean
type PlatformUsers__Post {
id: ID!
content: String
authorId: ID!
}
type PlatformUsers__User {
id: ID!
name: String
email: String
}
type PlatformUsersQueries {
posts: [PlatformUsers__Post!]!
post(id: ID!): PlatformUsers__Post
users: [PlatformUsers__User!]!
getSubschemaData: String
}
type PlatformUsersMutations {
createPost: PlatformUsers__Post!
}
type PlatformMutations {
users: PlatformUsersMutations!
}
type PlatformQueries {
users: PlatformUsersQueries!
}
type Mutation {
platform: PlatformMutations!
}
type Query {
platform: PlatformQueries!
}
In gateway you can query the schema like this:
query {
platform {
users {
# Query, mutate or subscribe to your service operations
...
}
}
}
All GraphQL types will be prefixed with the namespace and service name, allowing you to have multiple services under the same namespace without conflicts. Eg.: PlatformUsers__User
, PlatformUsers__Post
, etc.
You can install the gql-federation-schema-parser
CLI tool using one of the following methods:
- Using NPM
- On any platform with the pre-built binary
To install the CLI tool globally using NPM, run:
npm install -g @tiagoboeing/gql-federation-schema-parser
# or
pnpm install -g @tiagoboeing/gql-federation-schema-parser
After install, run:
gql-federation-schema-parser --help
On MacOS a warn will be shown when running the binary for the first time, indicating that it is from an unidentified developer. You can bypass this by following these steps:
# Download the latest release from the release page and unzip it
...
# Trust the binary and make it executable
xattr -d com.apple.quarantine gql-federation-schema-parser-macos
chmod +x gql-federation-schema-parser-macos
# Run the binary
./gql-federation-schema-parser-macos --help
On Linux, you can download the pre-built binary from the release page and run it directly:
# Download the latest release from the release page and unzip it
...
chmod +x gql-federation-schema-parser-macos
# Run the binary
./gql-federation-schema-parser-macos --help
To develop this project, you will need Node.js and npm installed. Follow these steps to set up the development environment:
To test the CLI, you can use tsx
script on package.json
to run the TypeScript code directly and debug in your IDE:
pnpm start:dev-ts src/index.ts [args]
Note
On VSCode, run from a JavaScript Debug Terminal to enable debugging features like breakpoints and watch variables.
or you can use bun
to run the TypeScript code (Bun debugger is buggy, so use it only if you don't need to debug):
pnpm start:dev
# or
bun --watch src/index.ts
# Pass arguments to the script
pnpm start:dev ...args
# Example:
pnpm start:dev parse -d ./schemas -s users -n platform
- Installation Issues: Check installation guide
- Usage Questions: Review examples
- CLI Help: Run
gql-federation-schema-parser --help
- Bug Reports: Create an issue on GitHub
- Development Setup: Follow development guide
- Contributing: See contribution guidelines
- API Reference: Check API documentation
- Architecture: Review project structure
Example: on Yoga/Hive gateway, you can create a custom plugin to handle
onFetch
hook, capture the namespace and service name, and translate the query to the correct service operation overriding thesetFetchFn()
method.
For more detailed information, check out the comprehensive documentation:
- Examples Guide - Comprehensive examples and use cases
- Development Guide - Development setup, workflow, and contribution guidelines
- API Reference - Internal API documentation and architecture details
- Changelog - Version history and release notes
- Basic Usage Examples
- Advanced Schema Transformations
- Federation Patterns
- CI/CD Integration
- Troubleshooting
You can install the gql-federation-schema-parser
CLI tool using one of the following methods:
- Using NPM
- On any platform with the pre-built binary
To install the CLI tool globally using NPM, run:
npm install -g @tiagoboeing/gql-federation-schema-parser
# or
pnpm install -g @tiagoboeing/gql-federation-schema-parser
After install, run:
gql-federation-schema-parser --help
On MacOS a warn will be shown when running the binary for the first time, indicating that it is from an unidentified developer. You can bypass this by following these steps:
# Download the latest release from the release page and unzip it
...
# Trust the binary and make it executable
xattr -d com.apple.quarantine gql-federation-schema-parser-macos
chmod +x gql-federation-schema-parser-macos
# Run the binary
./gql-federation-schema-parser-macos --help
On Linux, you can download the pre-built binary from the release page and run it directly:
# Download the latest release from the release page and unzip it
...
chmod +x gql-federation-schema-parser-macos
# Run the binary
./gql-federation-schema-parser-macos --help
To develop this project, you will need Node.js and npm installed. Follow these steps to set up the development environment:
To test the CLI, you can use tsx
script on package.json
to run the TypeScript code directly and debug in your IDE:
pnpm start:dev-ts src/index.ts [args]
Note
On VSCode, run from a JavaScript Debug Terminal to enable debugging features like breakpoints and watch variables.
or you can use bun
to run the TypeScript code (Bun debugger is buggy, so use it only if you don't need to debug):
pnpm start:dev
# or
bun --watch src/index.ts
# Pass arguments to the script
pnpm start:dev ...args
# Example:
pnpm start:dev parse -d ./schemas -s users -n platform
- Installation issues: Check installation guide
- Usage questions: Review examples
- CLI help: Run
gql-federation-schema-parser --help
- Bug reports: Create an issue on GitHub
- Development Setup: Follow development guide
- Contributing: See contribution guidelines
- API Reference: Check API documentation
- Architecture: Review project structure
Check the CHANGELOG.md for recent updates and new features.
This project is licensed under the MIT License. See the LICENSE file for details.
- GitHub Issues: Report bugs or request features
- NPM Package: @tiagoboeing/gql-federation-schema-parser