MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / after

Method after

src/executor/cursor.rs:69–75  ·  view source on GitHub ↗

Filter paginated result with corresponding column greater than the input value

(&mut self, values: V)

Source from the content-addressed store, hash-verified

67
68 /// Filter paginated result with corresponding column greater than the input value
69 pub fn after<V>(&mut self, values: V) -> &mut Self
70 where
71 V: IntoValueTuple,
72 {
73 self.after = Some(values.into_value_tuple());
74 self
75 }
76
77 fn apply_filters(&mut self) -> &mut Self {
78 if let Some(values) = self.after.clone() {

Callers 1

cursor_paginationFunction · 0.80

Calls

no outgoing calls

Tested by 1

cursor_paginationFunction · 0.64