Check if a query is syntactically valid This is a convenience method that returns a boolean instead of an error. # Arguments `query` - The GQL query string to check # Returns `true` - Query is syntactically valid `false` - Query has syntax errors # Example ```no_run # use graphlite::QueryCoordinator; # let coordinator = QueryCoordinator::from_path("./mydb").unwrap(); if coordinator.is_valid_qu
(&self, query: &str)
| 632 | /// } |
| 633 | /// ``` |
| 634 | pub fn is_valid_query(&self, query: &str) -> bool { |
| 635 | self.validate_query(query).is_ok() |
| 636 | } |
| 637 | |
| 638 | /// Analyze a query and return metadata without executing it |
| 639 | /// |