Struct async_graphql::Request [−][src]
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.
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 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,