jakartaee/nosql

Add support to prepare to skip and limit on the query

Closed this issue · 2 comments

@Query("select * from Variants where caseLevelData.biosampleId =@biosampleId skip @skip limit @limit")
List<VariantEntity> findByBiosampleId(@Param("biosampleId") String
biosampleId, @Param("skip") int skip, @Param("limit") int limit);

Unfortunately, this doesn't work either. I got an ANTLR exception:

QueryException: line 1:75 mismatched input '@skip' expecting INT

We need to add support to parameter types on skip and limit.

We won't work on it for a while, so I'll close until we return this work.