Trait glimesh::MutationConn[][src]

pub trait MutationConn {
#[must_use]    fn mutate<'life0, 'async_trait, Q>(
        &'life0 self,
        variables: Q::Variables
    ) -> Pin<Box<dyn Future<Output = Result<Q::ResponseData, Error>> + Send + 'async_trait>>
    where
        Q: GraphQLQuery,
        Q::Variables: Send + Sync,
        Q: 'async_trait,
        'life0: 'async_trait,
        Self: 'async_trait
; }

Connections that implement this support graphql mutations.

Required methods

#[must_use]fn mutate<'life0, 'async_trait, Q>(
    &'life0 self,
    variables: Q::Variables
) -> Pin<Box<dyn Future<Output = Result<Q::ResponseData, Error>> + Send + 'async_trait>> where
    Q: GraphQLQuery,
    Q::Variables: Send + Sync,
    Q: 'async_trait,
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Send a graphql mutation over this connection.

Errors

This function may error if there was a problem with the underlying connection such as a dns resolution error, or the websocket is disconnected, or if the api returned an error or the api response failed to decode.

Loading content...

Implementors

impl MutationConn for Connection[src]

Loading content...