[][src]Trait speedruns::data::graphql::query_trails::QueryTrailCategoryExtensions

pub trait QueryTrailCategoryExtensions<'a, K> {
    fn id(&self) -> bool;
fn src_id(&self) -> bool;
fn slug(&self) -> bool;
fn src_slug(&self) -> bool;
fn name(&self) -> bool;
fn levels(&self) -> QueryTrail<'a, CategoryLevel, NotWalked>;
fn leaderboard(&self) -> QueryTrail<'a, LeaderboardRun, NotWalked>;
fn progression(&self) -> QueryTrail<'a, ProgressionRun, NotWalked>; }

Extension trait for QueryTrail to inspect incoming queries.

Required methods

fn id(&self) -> bool

Check if a scalar leaf node is queried for

Generated by juniper-from-schema.

fn src_id(&self) -> bool

Check if a scalar leaf node is queried for

Generated by juniper-from-schema.

fn slug(&self) -> bool

Check if a scalar leaf node is queried for

Generated by juniper-from-schema.

fn src_slug(&self) -> bool

Check if a scalar leaf node is queried for

Generated by juniper-from-schema.

fn name(&self) -> bool

Check if a scalar leaf node is queried for

Generated by juniper-from-schema.

fn levels(&self) -> QueryTrail<'a, CategoryLevel, NotWalked>

Walk the trail into a field.

Generated by juniper-from-schema.

fn leaderboard(&self) -> QueryTrail<'a, LeaderboardRun, NotWalked>

Walk the trail into a field.

Generated by juniper-from-schema.

fn progression(&self) -> QueryTrail<'a, ProgressionRun, NotWalked>

Walk the trail into a field.

Generated by juniper-from-schema.

Loading content...

Implementors

impl<'a, K> QueryTrailCategoryExtensions<'a, K> for QueryTrail<'a, Category, K>[src]

Loading content...