Quickly scaffold a postman collection for a GraphQL API.
GraphMan CLI generates an complete collection from a GraphQL endpoint, containing one request per query & mutation, with pre filled fields, parameters and variables.
Note: GraphMan is designed for the postman-collection spec 2.1
✨GraphMan is fully compatible with the Insomnia API Client out of the box!✨
Visualizing and exploring existing graphql APIs can be quite daunting. Using postman to manage all your apis is pretty standard, however creating and maintaining collections is difficult. GraphMan makes thoses things easy, helping you for:
GraphMan uses deno as a javascript / typescript runtime. That allows to run the CLI from the file url. To get started:
deno run https://deno.land/x/graphman@v1.2.2/src/cli.ts <graphql endpoint url>
[...].postman_collection.json
file in postman.If you want to access graphman easly you can "install" it on your machine:
deno install -r -f --allow-net --allow-write -n graphman https://deno.land/x/graphman@v1.2.2/src/cli.ts
export PATH="..."
copy paste it in your ~/.bashrc
or ~/.zshrc
file to add graphman to your path. You can now run graphman
using the graphman <params>
command! 🎉 To update GraphMan just
reproduce the step 2.Note: this is not a real installation, it just creates a script that basically aliases the run form url command.
deno run src/index.ts <params>
Note that deno will ask for network and file-system permissions as it's runtime is secure by default
The relases are mirrored at https://deno.land/x/graphman@VERSION, you can use previous versions if needed.
--out=FILENAME
-H="header: value"
, can be used multiple times.--AuthHeader="header: value"
or -A="header: value"
--help
or -h
You can try graphman on public graphql APIs, and it is a great way to get started with graphQL:
deno run https://deno.land/x/graphman@v1.2.2/src/cli.ts https://rickandmortyapi.com/graphql
GraphMan collection for the Rick and morty API |
Character query for the Rick and morty API collection |