pub trait GraphQLRequester: Send + Sync {
    // Required method
    fn execute_graphql<'life0, 'life1, 'async_trait>(
        &'life0 self,
        operation: &'life1 str,
        variables: Option<Value>
    ) -> Pin<Box<dyn Future<Output = Result<Value, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn execute_graphql<'life0, 'life1, 'async_trait>( &'life0 self, operation: &'life1 str, variables: Option<Value> ) -> Pin<Box<dyn Future<Output = Result<Value, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§