| 28 | /// ALTER GRAPH TYPE statement AST |
| 29 | #[derive(Debug, Clone)] |
| 30 | pub 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected