Hi everyone, I've a scheduler with 2 different resources: buildings and classes.
a building is like this:
{ id: 1, name: "house A" }
a class is like this:
{ id: 1, name: "class A", buildingId: 1 }
Now, classes is a "subresource" of buildings, can I group the 2 resources so that for each building i see only the related classes?
I hope you can help me.
David