Make nullability explicit (not only) in ArrayType and CompositeType
All threads resolved!
All threads resolved!
Compare changes
+ 10
− 2
@@ -95,10 +95,18 @@ To retrieve a list of records that match given criteria, you can use the `findBy
There are also two pairs of helper methods to retrieve a *single* record that matches given criteria: `getOneBy()` and `findOneBy()` look for a unique record and throw an exception when the query yields more than one result. In addition, `getOneBy()` fails if no record is found, whereas `findOneBy()` returns null in such case.