graphquery 0.3.0

A simple cli tool to make graphql request.
Documentation
query {
    repository(owner: "$x:owner", name: "$x:name") {
        issues(first: 10, states: OPEN, orderBy: {field: CREATED_AT, direction: DESC}) {
            totalCount
            edges {
                node {
                    number
                    title
                    author {
                        login
                    }
                    milestone {
                      title
                    }
                }
            }
            pageInfo {
                startCursor
                endCursor
                hasNextPage
            }
        }
    }
}