Mysql – Quarkus – Panache how to execute a custom query
In spring, we can declare a custom query like this @Query( value = "SELECT * FROM USERS u WHERE u.status = 1", nativeQuery = true) Collection<User> findAllActiveUsersNative(); but in Quarkus I cannot find a reference on how to do this…