A simple cli tool to make graphql request to specified server.
Command and options:
```
Usage: graphquery.exe [OPTIONS] --url
Options:
-u, --url
Query with specified string:
cargo run -- --url=https://api.github.com/graphql --token=${YOUR_TOKEN} --query="query{viewer {login}}"
Query can be in a file:
cargo run -- --url=https://api.github.com/graphql --token=${YOUR_TOKEN} --file=graphql/github_issues.graphql --output=output.json