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

Method before

src/executor/cursor.rs:60–66  ·  view source on GitHub ↗

Filter paginated result with corresponding column less than the input value

(&mut self, values: V)

Source from the content-addressed store, hash-verified

58
59 /// Filter paginated result with corresponding column less than the input value
60 pub fn before<V>(&mut self, values: V) -> &mut Self
61 where
62 V: IntoValueTuple,
63 {
64 self.before = Some(values.into_value_tuple());
65 self
66 }
67
68 /// Filter paginated result with corresponding column greater than the input value
69 pub fn after<V>(&mut self, values: V) -> &mut Self

Callers 1

cursor_paginationFunction · 0.80

Calls

no outgoing calls

Tested by 1

cursor_paginationFunction · 0.64