ggapi

A library for communicating with start.gg's API.

Usage

You can use helper functions to get values off of start.gg: ```rust let data = gettournamentinfo( "evo-2023","INSERTTOKENHERE" ).await;

println!("{}", data.tournament().name()); println!("{}", data.tournament().startat().tostring()); println!("{}", data.tournament().slug()); println!("{}", data.tournament().short_slug()); ``` Each helper function will get a small specific set of values instead of a large query. See the notes below to see the reasoning why.

These helper functions are what are some of the most common uses of the API and should be able to cope with even the largest tournaments effectively.

If these helper functions aren't enough, you can execute a query directly like so: ```rust

let query = r#" query GetTournamentInfo($slug: String!) { tournament(slug: $slug) { id name slug shortSlug startAt events { id name phases { id name phaseGroups(query: { page: 1, perPage: 100 }) { nodes { id displayIdentifier } } } slug } } } "#;

let vars = Vars { slug: slug.tostring(), page: 1, perpage: 100 }; let data = execute_query(&token, &query, vars).await;

println!("{}", data.tournament().name()); println!("{}", data.tournament().startat().tostring()); println!("{}", data.tournament().slug()); println!("{}", data.tournament().shortslug()); ``` This example does the same as the helper function gettournament_info(), but it lets you customize the query to your liking.

When using execute_query() directly like this, you are not guaranteed to get a safe value back. Mainly, you are likely to hit the 1000 object limit if you are working with a large tournament, so try and use the helper functions whenever possible!

Notes

Contributing

If you want to help contribute to the project, pull requests are encouraged! Most of the aspects of this are relatively simple, but any amount of help is appreciated! Just try and follow the same style of the existing files, the convention is there and (mostly) consistent across the entire library.

Todo