18 lines
338 B
JavaScript
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);
|