beefed up schema compiled properties with cases properties and added tests with cases to queryer and merger

This commit is contained in:
2026-04-16 11:00:26 -04:00
parent cd85a8a2c3
commit 77af67aef5
6 changed files with 351 additions and 53 deletions

View File

@ -95,11 +95,11 @@ fn test_library_api() {
"name": { "type": "string" },
"target": {
"type": "target_schema",
"compiledProperties": ["value"]
"compiledPropertyNames": ["value"]
}
},
"required": ["name"],
"compiledProperties": ["name", "target", "type"],
"compiledPropertyNames": ["name", "target", "type"],
"compiledEdges": {
"target": {
"constraint": "fk_test_target",
@ -112,7 +112,7 @@ fn test_library_api() {
"properties": {
"value": { "type": "number" }
},
"compiledProperties": ["value"]
"compiledPropertyNames": ["value"]
}
}
})