graphquery 0.3.0

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