Missing entities from service
Hello community.
I was wondering if someone here could perhaps explain to me why these two code snippets do not provide the same result of things?
I have two things:
VAM_KOP_68316_0
VAM_KOP_68316_1
They are both in the VAM_KOP_Project:


They both appear in the browse window:

And they also both appear in the Thing browse function:

I can unfortunately not provide a view in the projects entity list itself as it contains 10k+ entities.
let entities = Resources["EntityServices"].GetEntityList({
maxItems: undefined /* NUMBER {"defaultValue":500} */,
nameMask: "VAM_KOP*" /* STRING */,
type: "Thing" /* STRING */,
tags: undefined /* TAGS */,
});
^ this one doesn't give me any of the two things.
Whereas this one gives both:
let projectEntities = Projects["VAM_KOP_Project"].GetEntities();

I do not understand why this is... Could it be some type of data corruption?
Thanks,
Jens C

