Releases: Escape-Technologies/graphman
Releases · Escape-Technologies/graphman
v1.2.2
v1.2.1
- Introduces
-H
flag to pass multiple custom headers. --auth
flag has been removed and should be used via-H="Authorization: <token>"
- Fixes.
v1.2.0
Graphman now properly supports UNION
types.
It will fill operations bodies with each union type to produce an output like:
query myUnionQuery {
myUnionQuery {
__typename
...on UnionType1 {
__typename
scalar,
# object
}
...on UnionType2 {
__typename
scalar,
# object
}
}
}
v1.1.4
v1.1.3
v1.1.2
v1.1.1
v1.1.0
v1.1.0 introduces a huge refactor of the architecture of graph man, whose effort is to decouple different steps of the process, to be able to develop new features easily, and add more options to the CLI. Typing is also greatly improved. Graphman can now be used as a module, not only via the CLI. The CLI entry point has changed to /src/cli.ts