I am trying to do the following query in my DAO.
@Query(\"SELECT * FROM objects WHERE obj_id IN :ids\") List queryObjects(List
You need parentheses:
@Query("SELECT * FROM objects WHERE obj_id IN (:ids)") List queryObjects(List ids);
(and FWIW, I filed an issue to try to get a better error message here)