Struct finchers_juniper::request::GraphQLRequest [−][src]
pub struct GraphQLRequest(_);
A type representing the decoded GraphQL query obtained by parsing an HTTP request.
Methods
impl GraphQLRequest[src]
impl GraphQLRequestpub fn execute<QueryT, MutationT, CtxT>(
&self,
root_node: &RootNode<'static, QueryT, MutationT>,
context: &CtxT
) -> GraphQLResponse where
QueryT: GraphQLType<Context = CtxT>,
MutationT: GraphQLType<Context = CtxT>, [src]
pub fn execute<QueryT, MutationT, CtxT>(
&self,
root_node: &RootNode<'static, QueryT, MutationT>,
context: &CtxT
) -> GraphQLResponse where
QueryT: GraphQLType<Context = CtxT>,
MutationT: GraphQLType<Context = CtxT>, Executes a GraphQL query represented by this value using the specified schema and context.
Trait Implementations
impl Debug for GraphQLRequest[src]
impl Debug for GraphQLRequestAuto Trait Implementations
impl Send for GraphQLRequest
impl Send for GraphQLRequestimpl Sync for GraphQLRequest
impl Sync for GraphQLRequest