Struct tsukuyomi_juniper::GraphQLRequest[][src]

pub struct GraphQLRequest(_);

A wrapper around an incoming GraphQL request from a client.

Methods

impl GraphQLRequest
[src]

Creates a single GraphQL request.

Creates a batch GraphQL requests.

Parses a query string into a single GraphQL request.

Parses a query string into a set of GraphQL request.

The provided payload must be a valid JSON data.

Returns true if this request is a batch request.

Trait Implementations

impl Debug for GraphQLRequest
[src]

Formats the value using the given formatter. Read more

impl FromData for GraphQLRequest
[src]

Perform conversion from a received buffer of bytes into a value of Self.

Auto Trait Implementations