Struct github_gql::mutation::Mutation [] [src]

pub struct Mutation { /* fields omitted */ }

Used to mutate information on GitHub

Methods

impl Mutation
[src]

[src]

Create a new Mutation

[src]

Create a new Mutation using the given value as the input for the query to GitHub. Any other methods used will assume the String is empty. This is a shortcut for doing:

let m = Mutation::new();
m.raw_query("my query which won't work");

as

let m = Mutation::new_raw("my query which won't work");

[src]

Whatever you put here becomes your query and replaces anything you might have built up before. This assumes you know what you're doing with the API so no guarantees can be made here that it will work, only that if used this can be used to make a query using the client::Github type.

Trait Implementations

impl IntoGithubRequest for Mutation
[src]

[src]