Question
QueryDataTableEntries with TaggedWith does not work
I am trying to filter a DataTable using QueryDataTableEntries for a column that contains tags.
According the the documentation I am using this filter expression (where type of field Context is TAGS and Tag type is Model Tags), but the filter does not seem to have any effect:
let filters = {
"filters":
{
"type": "NotTaggedWith",
"fieldName": "Context",
"tags": "PTC:factory-mv"
}
};
let result = me.QueryDataTableEntries({
values: undefined /* INFOTABLE */,
maxItems: 500 /* NUMBER */,
tags: undefined /* TAGS */,
source: undefined /* STRING */,
query: filters /* QUERY */
});
I also tried to get all the data, put it into an Infotable and query that one with the same effect.
Can anyone help on this?

