github-gql-rs

Incomplete Bindings

Given that this is a bit more free form a full on GraphQL library for client queries has not been made. Please refer to the GitHub V4 API docs for queries you can make.

Dependencies and Support

github-gql-rs is intended to work on all tier 1 supported Rust systems:

Minimum Compiler Version

Due to the use of certain features githubgql--rs requires rustc version 1.18 or higher.

Project Aims

Getting Started

Add the following to your Cargo.toml

toml [dependencies] github-gql-rs = "0.01"

Then in your lib.rs or main.rs file add:

rust extern crate github_gql; use github_gql::client::Github;

Now you can start making queries. Here's a small example to get your user information:

```rust extern crate githubgql as gh; extern crate serdejson; use gh::client::Github; use gh::query::Query; use serde_json::Value;

fn main() { let mut g = Github::new("YOUR API TOKEN GOES HERE").unwrap(); let (headers, status, json) = g.query::( &Query::new_raw("query { viewer { login } }") ).unwrap();

println!("{}", headers);
println!("{}", status);
if let Some(json) = json {
    println!("{}", json);
}

// This will update https://github.com/octocat/Hello-World/issues/349
// with a HOORAY emoji!
let (headers, status, json) = g.mutation::<Value>(
    &Mutation::new_raw(
    "mutation AddReactionToIssue { \
        addReaction( input: { subjectId: \\\"MDU6SXNzdWUyMzEzOTE1NTE=\\\", content: HOORAY } ) { \
            reaction { \
                content \
            } \
            subject { \
                id \
            } \
        } \
    }")
).unwrap();
println!("{}", headers);
println!("{}", status);
if let Some(json) = json {
    println!("{}", json);
}

} ```

Hacking on the Library

Contributing

See CONTRIBUTING.md for more information.

License

Licensed under either of

at your option.

Licensing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.