[−][src]Enum async_graphql::QueryOperation
Connection query operation
Variants
Return all results
Return all results after the cursor
Fields of After
after: Cursor
After this cursor
Return all results before the cursor
Fields of Before
before: Cursor
Before this cursor
Return all results between the cursors
Return the amount of results specified by limit
, starting from the beginning
Fields of First
limit: usize
The maximum amount of results to return
Return the amount of results specified by limit
, starting after the cursor
Fields of FirstAfter
Return the amount of results specified by limit
, starting from the beginning but ending before the cursor
Fields of FirstBefore
Return the amount of results specified by limit
, but between the cursors. Limit includes beginning results.
Fields of FirstBetween
Return the amount of results specified by limit
, but before the end
Fields of Last
limit: usize
The maximum amount of results to return
Return the amount of results specified by limit
, but before the end. Must not include anything before the cursor.
Fields of LastAfter
Return the amount of results specified by limit
, but before the cursor
Fields of LastBefore
Return the amount of results specified by limit
, but between the cursors. Limit includes ending results.
Fields of LastBetween
An invalid query was made. For example: sending first
and last
in the same query
Trait Implementations
impl Clone for QueryOperation
[src]
fn clone(&self) -> QueryOperation
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for QueryOperation
[src]
Auto Trait Implementations
impl RefUnwindSafe for QueryOperation
impl Send for QueryOperation
impl Sync for QueryOperation
impl Unpin for QueryOperation
impl UnwindSafe for QueryOperation
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,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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.
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.
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>,