The current model data will come from Blender initially and later from Revit. By storing the IDs of the models, I can ensure that the viewer displays the elements of the model with different colors according to our requirements.
I need to generate statistics on this (how many elements are in each color and how many are not colored). I store the IDs of the already configured elements, but I would also need to know the total number of displayed elements (the ones that can be clicked on in the viewer).
I would need the IDs of these elements.
For example, here it shows that there are 29 elements in dark green, 20 in yellow, and so on. I would need the IDs of the elements that are not colored.
This is also necessary in order to avoid retrieving unnecessary data during the request. In the above model, for example, there are approximately 900 clickable elements, yet it retrieves 24,000 elements, which significantly increases the runtime.
And one more thing, is it possible to set the limit value to retrieve not only 100 items, but dynamically retrieve all of them?