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

Method set_validate_on_write

graphlite/src/session/models.rs:336–341  ·  view source on GitHub ↗

Set whether to validate on write operations

(&mut self, enabled: bool)

Source from the content-addressed store, hash-verified

334
335 /// Set whether to validate on write operations
336 pub fn set_validate_on_write(&mut self, enabled: bool) {
337 self.set_parameter(
338 "schema_validate_on_write".to_string(),
339 Value::Boolean(enabled),
340 );
341 }
342
343 /// Get whether to validate on write operations (default: true)
344 pub fn get_validate_on_write(&self) -> bool {

Callers

nothing calls this directly

Calls 1

set_parameterMethod · 0.80

Tested by

no test coverage detected