Struct async_graphql::types::connection::Edge
source · pub struct Edge<Cursor, Node, EdgeFields, Name = DefaultEdgeName>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,{
pub node: Node,
/* private fields */
}
Expand description
An edge in a connection.
Fields§
§node: Node
The item at the end of the edge
Implementations§
source§impl<Cursor, Node, EdgeFields, Name> Edge<Cursor, Node, EdgeFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,
impl<Cursor, Node, EdgeFields, Name> Edge<Cursor, Node, EdgeFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,
source§impl<Cursor, Node, EdgeFields, Name> Edge<Cursor, Node, EdgeFields, Name>where
Name: EdgeNameType,
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
impl<Cursor, Node, EdgeFields, Name> Edge<Cursor, Node, EdgeFields, Name>where
Name: EdgeNameType,
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
sourcepub fn with_additional_fields(
cursor: Cursor,
node: Node,
additional_fields: EdgeFields
) -> Self
pub fn with_additional_fields(
cursor: Cursor,
node: Node,
additional_fields: EdgeFields
) -> Self
Create a new edge, it can have some additional fields.
source§impl<Cursor, Node, Name> Edge<Cursor, Node, EmptyFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
Name: EdgeNameType,
impl<Cursor, Node, Name> Edge<Cursor, Node, EmptyFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
Name: EdgeNameType,
Trait Implementations§
source§impl<Cursor, Node, EdgeFields, Name> ContainerType for Edge<Cursor, Node, EdgeFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,
impl<Cursor, Node, EdgeFields, Name> ContainerType for Edge<Cursor, Node, EdgeFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,
source§fn resolve_field<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
ctx: &'life1 Context<'life2>
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn resolve_field<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
ctx: &'life1 Context<'life2>
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Resolves a field value and outputs it as a json value
async_graphql::Value
. Read moresource§fn collect_all_fields<'a>(
&'a self,
ctx: &ContextSelectionSet<'a>,
fields: &mut Fields<'a>
) -> ServerResult<()>where
Self: Send + Sync,
fn collect_all_fields<'a>(
&'a self,
ctx: &ContextSelectionSet<'a>,
fields: &mut Fields<'a>
) -> ServerResult<()>where
Self: Send + Sync,
Collect all the fields of the container that are queried in the
selection set. Read more
source§fn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
__arg1: &'life1 Context<'life2>,
_params: &'life3 Value
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
fn find_entity<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
__arg1: &'life1 Context<'life2>,
_params: &'life3 Value
) -> Pin<Box<dyn Future<Output = ServerResult<Option<Value>>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Find the GraphQL entity with the given name from the parameter. Read more
source§impl<Cursor, Node, EdgeFields, Name> OutputType for Edge<Cursor, Node, EdgeFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,
impl<Cursor, Node, EdgeFields, Name> OutputType for Edge<Cursor, Node, EdgeFields, Name>where
Cursor: CursorType + Send + Sync,
Node: OutputType,
EdgeFields: ObjectType,
Name: EdgeNameType,
source§fn create_type_info(registry: &mut Registry) -> String
fn create_type_info(registry: &mut Registry) -> String
Create type information in the registry and return qualified typename.
source§fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
ctx: &'life1 ContextSelectionSet<'life2>,
_field: &'life3 Positioned<Field>
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
ctx: &'life1 ContextSelectionSet<'life2>,
_field: &'life3 Positioned<Field>
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Resolve an output value to
async_graphql::Value
.source§fn qualified_type_name() -> String
fn qualified_type_name() -> String
Qualified typename.