I have to create this N1QL couchbase query in Spring data
select... LIKE "TASK:100:%"
where 100 is a parameter, but I don't know if it is possible
@Query("#{#n1ql.selectEntity} where META().id like \"TASK:$1%:\" ")
List<Task> findTasks(String taskId);