You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "not-deleted" filter queryNonDeleted = {[options.deletedAt]: null} is translated into { deleted_at: { '$type': 10 } }. This query won't find any record. What we'd need is more like deleted_at: {$exists: false}. Unfortunately I don't know whether there is an expression which gets translated to this and hopefully stills works with other databases.
Maybe using "deletedBy" would be easier than using a date?
The "not-deleted" filter
queryNonDeleted = {[options.deletedAt]: null}
is translated into{ deleted_at: { '$type': 10 } }
. This query won't find any record. What we'd need is more likedeleted_at: {$exists: false}
. Unfortunately I don't know whether there is an expression which gets translated to this and hopefully stills works with other databases.Maybe using "deletedBy" would be easier than using a date?
From server log:
The text was updated successfully, but these errors were encountered: