sea-orm/src/query/mod.rs
Chris Tsang bfe6eb39d5
Cursor pagination (#822)
* Cursor pagination

* Apply filter / range filter on cursor; Allow non-primary key filter

* Fixup

* Update cursor API

* Cursor pagination with composite keys

* Docs

* Rename cursor() to cursor_by()

Co-authored-by: Billy Chan <ccw.billy.123@gmail.com>
2022-07-10 15:08:38 +08:00

29 lines
549 B
Rust

pub(crate) mod combine;
mod delete;
mod helper;
mod insert;
mod join;
#[cfg(feature = "with-json")]
mod json;
mod select;
mod traits;
mod update;
mod util;
pub use combine::{SelectA, SelectB};
pub use delete::*;
pub use helper::*;
pub use insert::*;
pub use join::*;
#[cfg(feature = "with-json")]
pub use json::*;
pub use select::*;
pub use traits::*;
pub use update::*;
pub use util::*;
pub use crate::{
ConnectionTrait, CursorTrait, InsertResult, PaginatorTrait, Statement, StreamTrait,
TransactionTrait, UpdateResult, Value, Values,
};