A simple cli tool to make graphql request to specified server.
Command and options:
```
Usage: graphquery.exe [OPTIONS] --url
Options:
-u, --url
cargo run -- --url=https://api.github.com/graphql --token=${YOUR_TOKEN} --query="query{viewer {login}}"
cargo run -- --url=https://api.github.com/graphql --token=${YOUR_TOKEN} --file=graphql/github_issues.graphql --output=output.json
cargo run -- --url=https://api.github.com/graphql --token=${YOUR_TOKEN} --file=graphql/github_issues_with_x.graphql --extra owner=jrdeng --extra name=Playground
The "--extra" arguments will be used to replace some varialbe defined in the query string. (in the form: "$x:key
". please check the example query file in the above example for details.)