juniper::http

Struct GraphQLRequest

Source
pub struct GraphQLRequest<S = DefaultScalarValue>
where S: ScalarValue,
{ pub query: String, pub operation_name: Option<String>, pub variables: Option<InputValue<S>>, }
Expand description

The expected structure of the decoded JSON document for either POST or GET requests.

For POST, you can use Serde to deserialize the incoming JSON data directly into this struct - it derives Deserialize for exactly this reason.

For GET, you will need to parse the query string and extract “query”, “operationName”, and “variables” manually.

Fields§

§query: String

GraphQL query representing this request.

§operation_name: Option<String>

Optional name of the operation associated with this request.

§variables: Option<InputValue<S>>

Optional variables to execute the GraphQL operation with.

Implementations§

Source§

impl<S> GraphQLRequest<S>
where S: ScalarValue,

Source

pub fn operation_name(&self) -> Option<&str>

👎Deprecated since 0.16.0: Use the direct field access instead.

Returns the operation_name associated with this request.

Source

pub fn variables(&self) -> Variables<S>

Returns operation Variables defined withing this request.

Source

pub fn new( query: String, operation_name: Option<String>, variables: Option<InputValue<S>>, ) -> Self

Construct a new GraphQL request from parts

Source

pub fn execute_sync<QueryT, MutationT, SubscriptionT>( &self, root_node: &RootNode<'_, QueryT, MutationT, SubscriptionT, S>, context: &QueryT::Context, ) -> GraphQLResponse<S>
where S: ScalarValue, QueryT: GraphQLType<S>, MutationT: GraphQLType<S, Context = QueryT::Context>, SubscriptionT: GraphQLType<S, Context = QueryT::Context>,

Execute a GraphQL request synchronously using the specified schema and context

This is a simple wrapper around the execute_sync function exposed at the top level of this crate.

Source

pub async fn execute<'a, QueryT, MutationT, SubscriptionT>( &'a self, root_node: &'a RootNode<'a, QueryT, MutationT, SubscriptionT, S>, context: &'a QueryT::Context, ) -> GraphQLResponse<S>
where QueryT: GraphQLTypeAsync<S>, QueryT::TypeInfo: Sync, QueryT::Context: Sync, MutationT: GraphQLTypeAsync<S, Context = QueryT::Context>, MutationT::TypeInfo: Sync, SubscriptionT: GraphQLType<S, Context = QueryT::Context> + Sync, SubscriptionT::TypeInfo: Sync, S: ScalarValue + Send + Sync,

Execute a GraphQL request using the specified schema and context

This is a simple wrapper around the execute function exposed at the top level of this crate.

Trait Implementations§

Source§

impl<S> Clone for GraphQLRequest<S>
where S: ScalarValue + Clone,

Source§

fn clone(&self) -> GraphQLRequest<S>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S> Debug for GraphQLRequest<S>
where S: ScalarValue + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, S> Deserialize<'de> for GraphQLRequest<S>
where S: ScalarValue, InputValue<S>: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<S> PartialEq for GraphQLRequest<S>

Source§

fn eq(&self, other: &GraphQLRequest<S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<S> Serialize for GraphQLRequest<S>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<S> StructuralPartialEq for GraphQLRequest<S>
where S: ScalarValue,

Auto Trait Implementations§

§

impl<S> Freeze for GraphQLRequest<S>
where S: Freeze,

§

impl<S> RefUnwindSafe for GraphQLRequest<S>
where S: RefUnwindSafe,

§

impl<S> Send for GraphQLRequest<S>
where S: Send,

§

impl<S> Sync for GraphQLRequest<S>
where S: Sync,

§

impl<S> Unpin for GraphQLRequest<S>
where S: Unpin,

§

impl<S> UnwindSafe for GraphQLRequest<S>
where S: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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