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

Class AlterGraphTypeStatement

graphlite/src/schema/parser/ast.rs:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28/// ALTER GRAPH TYPE statement AST
29#[derive(Debug, Clone)]
30pub struct AlterGraphTypeStatement {
31 #[allow(dead_code)] // ROADMAP v0.4.0 - Graph type name for ALTER GRAPH TYPE DDL
32 pub name: String,
33 #[allow(dead_code)] // ROADMAP v0.4.0 - Version specification for schema evolution tracking
34 pub version: Option<GraphTypeVersion>,
35 #[allow(dead_code)]
36 // ROADMAP v0.4.0 - Schema change operations (ADD/DROP/ALTER node/edge types)
37 pub changes: Vec<SchemaChange>,
38}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected