Is there a parameter for an array-contains filter?...
# community-help
a
Is there a parameter for an array-contains filter? For instance, return all users where the string Id is not found in a user's array of seenIds
k
If you have a seenIds field that's a string array you can do seenIds:!= foo
a
Awesome, thanks!