We need unsafe methods which doesn't return Optional but null.
Or throw exceptions.
First option is to create unsafe getters inside CQuery itselft: instead of using query.first().get() we could use query.$first()
Another option is to create new class: CNullableQuery and remove all optionals from it.
We need _unsafe_ methods which doesn't return `Optional` but null.
Or throw exceptions.
First option is to create unsafe getters inside CQuery itselft: instead of using `query.first().get()` we could use `query.$first()`
Another option is to create new class: `CNullableQuery` and remove all optionals from it.
We need unsafe methods which doesn't return
Optionalbut null.Or throw exceptions.
First option is to create unsafe getters inside CQuery itselft: instead of using
query.first().get()we could usequery.$first()Another option is to create new class:
CNullableQueryand remove all optionals from it.