pub struct OperationalContext {
pub schema: String,
pub query: String,
pub operation_name: String,
}Expand description
This is the context which provides all the information to plan a query against a schema
Fields§
§schema: StringThe graphQL schema
query: StringThe graphQL query
operation_name: StringThe operation name
Trait Implementations§
Source§impl Debug for OperationalContext
impl Debug for OperationalContext
Auto Trait Implementations§
impl Freeze for OperationalContext
impl RefUnwindSafe for OperationalContext
impl Send for OperationalContext
impl Sync for OperationalContext
impl Unpin for OperationalContext
impl UnwindSafe for OperationalContext
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more