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
A query with a not filter condition will fail to account for that condition. For example:
from(f in Foo, where: f.bar == "1234" and not is_nil(f.deleted_at))
|> Locus.Repo.all()
will return all records where f.bar == "1234", regardless of their deleted_at status - expected behavior would to be to return all records where f.deleted is not nil.
A query with a
not
filter condition will fail to account for that condition. For example:will return all records where
f.bar == "1234"
, regardless of theirdeleted_at
status - expected behavior would to be to return all records wheref.deleted
is notnil
.DynamoDB does support this kind of query:
The text was updated successfully, but these errors were encountered: