PlayQ/d4s

Add `notNull` and `isNull` conditions

Closed this issue · 1 comments

Add `notNull` and `isNull` conditions

Currently we need to write something like this:

.withFilterExpression(Condition.raw("recipients = :null") OR "recipients".notExists OR "recipients".of[UUID].contains(user.user))
.withAttributeValues(Map(":null" -> AttributeValue.builder().nul(true).build()))