I'm trying to get a list of members. In mongodb the array is a list of ObjectIds. But when I run the query it finds nothing. I know the actual ID's are valid. There could be a few deleted users, but most of them exist.
On our server we are building the query with Mongoose and it works fine, but I'm not sure how to do that here. It looks like my options are to convert the strings to objects in the users query, or the original data as a post-query transformer on the data source. I've made a few attempts, but I'm not sure if I'm even on the right track.
This query works, but that's for a single user and I can specify it should be treated as an $oid.