MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / skip

Method skip

sdk-rust/src/query.rs:202–205  ·  view source on GitHub ↗

Set the SKIP value Skips the first N results. # Arguments `n` - Number of results to skip # Examples ```no_run # use graphlite_sdk::GraphLite; # let db = GraphLite::open("./mydb")?; # let session = db.session("admin")?; session.query_builder() .match_pattern("(p:Person)") .return_clause("p") .skip(10); // Skip first 10 results # Ok::<(), graphlite_sdk::Error>(()) ```

(mut self, n: usize)

Source from the content-addressed store, hash-verified

200 /// # Ok::<(), graphlite_sdk::Error>(())
201 /// ```
202 pub fn skip(mut self, n: usize) -> Self {
203 self.skip = Some(n);
204 self
205 }
206
207 /// Set the LIMIT value
208 ///

Callers 3

union_graphsMethod · 0.45
execute_limitMethod · 0.45
execute_set_operationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected