Add a WHERE clause condition Can be called multiple times - conditions are AND'ed together. # Arguments `condition` - Condition to add (without the WHERE keyword) # Examples ```no_run # use graphlite_sdk::GraphLite; # let db = GraphLite::open("./mydb")?; # let session = db.session("admin")?; session.query_builder() .match_pattern("(p:Person)") .where_clause("p.age > 25") .where_clause("p.name
(mut self, condition: &str)
| 102 | /// # Ok::<(), graphlite_sdk::Error>(()) |
| 103 | /// ``` |
| 104 | pub fn where_clause(mut self, condition: &str) -> Self { |
| 105 | self.where_clauses.push(condition.to_string()); |
| 106 | self |
| 107 | } |
| 108 | |
| 109 | /// Add a WITH clause |
| 110 | /// |