Struct async_graphql::Request[][src]

pub struct Request {
    pub query: String,
    pub operation_name: Option<String>,
    pub variables: Variables,
    pub uploads: Vec<UploadValue>,
    pub data: Data,
    pub extensions: HashMap<String, Value>,
    pub disable_introspection: bool,
}

GraphQL request.

This can be deserialized from a structure of the query string, the operation name and the variables. The names are all in camelCase (e.g. operationName).

Fields

query: String

The query source of the request.

operation_name: Option<String>

The operation name of the request.

variables: Variables

The variables of the request.

uploads: Vec<UploadValue>

Uploads sent with the request.

data: Data

The data of the request that can be accessed through Context::data.

This data is only valid for this request

extensions: HashMap<String, Value>

The extensions config of the request.

disable_introspection: bool

Disable introspection queries for this request.

Implementations

impl Request[src]

pub fn new(query: impl Into<String>) -> Self[src]

Create a request object with query source.

pub fn operation_name<T: Into<String>>(self, name: T) -> Self[src]

Specify the operation name of the request.

pub fn variables(self, variables: Variables) -> Self[src]

Specify the variables.

pub fn data<D: Any + Send + Sync>(self, data: D) -> Self[src]

Insert some data for this request.

pub fn disable_introspection(self) -> Self[src]

Disable introspection queries for this request.

pub fn set_upload(&mut self, var_path: &str, upload: UploadValue)[src]

Set a variable to an upload value.

var_path is a dot-separated path to the item that begins with variables, for example variables.files.2.content is equivalent to the Rust code request.variables["files"][2]["content"]. If no variable exists at the path this function won’t do anything.

Trait Implementations

impl Debug for Request[src]

impl<'de> Deserialize<'de> for Request[src]

impl From<Request> for BatchRequest[src]

impl<T: Into<String>> From<T> for Request[src]

impl Serialize for Request[src]

Auto Trait Implementations

impl !RefUnwindSafe for Request

impl Send for Request

impl Sync for Request

impl Unpin for Request

impl !UnwindSafe for Request

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]