Files
2026-07-26 18:25:37 +09:00

18 lines
338 B
JavaScript

import Chart from "../../core.js";
export const name = "testIntersection";
export const schema = {
a: {
uniqueIncrement: true
},
b: {
uniqueIncrement: true
},
aAndB: {
intersection: [
"a",
"b"
]
}
};
export const entity = Chart.schemaToEntity(name, schema);