pub struct ProjectsQueryBuilder<'a> { /* private fields */ }Expand description
Query builder: All projects.
Use setter methods to configure optional parameters, then call
.send() to execute the query.
Implementations§
Source§impl<'a> ProjectsQueryBuilder<'a>
impl<'a> ProjectsQueryBuilder<'a>
pub fn filter(self, value: ProjectFilter) -> Self
pub fn before(self, value: impl Into<String>) -> Self
pub fn after(self, value: impl Into<String>) -> Self
pub fn first(self, value: i64) -> Self
pub fn last(self, value: i64) -> Self
pub fn include_archived(self, value: bool) -> Self
pub fn order_by(self, value: PaginationOrderBy) -> Self
pub fn sort(self, value: ProjectSortInput) -> Self
pub async fn send(self) -> Result<Connection<Project>, LinearError>
Auto Trait Implementations§
impl<'a> Freeze for ProjectsQueryBuilder<'a>
impl<'a> !RefUnwindSafe for ProjectsQueryBuilder<'a>
impl<'a> Send for ProjectsQueryBuilder<'a>
impl<'a> Sync for ProjectsQueryBuilder<'a>
impl<'a> Unpin for ProjectsQueryBuilder<'a>
impl<'a> !UnwindSafe for ProjectsQueryBuilder<'a>
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