Trait lightspark::types::graphql_requester::GraphQLRequester
source · 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;
}