Open beatrizsanchez opened 6 years ago
For a given PTCIM object type "Y", calling Y.all returns all objects of type Y. However using the select operation in the following ways: (x|x.isTypeOf(Y)) or (x:Y|true), fails to get all the items. However, using (x|x.type =Y) does work.
(x|x.isTypeOf(Y))
(x:Y|true)
(x|x.type =Y)
For a given PTCIM object type "Y", calling Y.all returns all objects of type Y. However using the select operation in the following ways:
(x|x.isTypeOf(Y))
or(x:Y|true)
, fails to get all the items. However, using(x|x.type =Y)
does work.