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)
| 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 | /// |
no outgoing calls
no test coverage detected