Trait graphql_starter::graphql::IntoConnection

source ·
pub trait IntoConnection<T>
where T: OutputType,
{ // Required method fn into_connection(self) -> Connection<OpaqueCursor, T, ConnectionFields>; }
Expand description

Trait to convert into a Connection

Required Methods§

Implementors§

source§

impl<T> IntoConnection<T> for Page<T>
where T: OutputType,