Filter out all items with no tags set
AnsweredI'm trying to filter out all items with no tags set, using the Python client library. I've got some stuff working as expected:
c = api.OAuthClient(...)
data = c.Item.filter(kommapp_id, { 'filters': { 'tags': ['existing-tag'] }, 'limit': 50 })
filters out all the items with the tag 'existing-tag'. However, I can't figure out how to get all items that have no tags set. Is there a good way to accomplish this?
Please sign in to leave a comment.
Comments
7 comments