0.3.0 • Published 3 years ago
@adgstudio/graphql-generator v0.3.0
Graphql Generator
Generate graphql object, type definition and merge sdl from graphql sdl/s
Install
install from npm
npm install -D @adgstudio/graphql-generator
Usage
Generate Graphql Types
Generate graphql typescript types from graphql sdl file
import { GraphqlTypesGenerator } from "@adgstudio/graphql-generator";
async function main() {
const generator = new GraphqlTypesGenerator();
await factory.generate("./src/**/*.graphql", {
outputPath: "path/to/destination.ts",
});
}
main();
Generate Graphql Object
Generate graphql object definition from graphql sdl file
import { GraphqlObjectGenerator } from "@adgstudio/graphql-generator";
async function main() {
const generator = new GraphqlObjectGenerator();
await generator.generate("./src/modules/**/*.graphql", {
outputPath: "path/to/destination.ts",
});
}
main();
Merge graphql sdl to a single file
Merge multiple graphql sdl files to a single graphql sdl file
import { GraphqlSdlFactory } from "@adgstudio/graphql-generator";
async function main() {
const generator = new GraphqlSdlFactory();
await generator.merge("./src/modules/**/*.graphql", {
outputPath: "path/to/destination.graphql",
});
}
main();
Contributing
Fork this repo and create pull request to dev
branch
Support
0.1.20
3 years ago
0.1.21
3 years ago
0.3.0
3 years ago
0.2.1
3 years ago
0.2.0
3 years ago
0.1.19
3 years ago
0.2.2
3 years ago
0.1.18
4 years ago
0.1.17
4 years ago
0.1.16
4 years ago
0.1.15
4 years ago
0.1.15-rc.3
4 years ago
0.1.15-rc.2
4 years ago
0.1.15-rc.1
4 years ago
0.1.15-rc.0
4 years ago
0.1.14
4 years ago
0.1.13
4 years ago
0.1.12
4 years ago
0.1.11
4 years ago
0.1.10
4 years ago
0.1.9
4 years ago
0.1.8
4 years ago
0.1.7
4 years ago
0.1.6
4 years ago
0.1.5
4 years ago
0.1.4
4 years ago
0.1.3
4 years ago
0.1.2
4 years ago
0.1.2-rc.6
4 years ago
0.1.2-rc.5
4 years ago
0.1.2-rc.4
4 years ago
0.1.2-rc.3
4 years ago
0.1.2-rc.2
4 years ago
0.1.2-rc.1
4 years ago
0.1.2-rc.0
4 years ago
0.1.1
4 years ago
0.1.1-rc.0
4 years ago
0.1.0
4 years ago
0.0.1
4 years ago