I’m trying to find any items where the item name doesn’t match a list I have on my server, ie someone has manually added something that shouldn’t be there.
I would expect to do this with a negation query along of:
itemp‘name’] not in ™â€˜bob’, ‘fred’, ‘harry’]
or get a list of unique item names which I could then compare on the server and then use to pull the data from the board, something like:
DISTINCT itemb‘name’]
I can’t find any negation or distinct functions to the API. Are there any?
(I suppose that I could create a status field and then query the labels, but I really don’t want to use a status field as it isn’t appropriate)