I am trying to do the following query in my DAO.
@Query(\"SELECT * FROM objects WHERE obj_id IN :ids\") List queryObjects(List
You can set either list of input or array of input.
and then make a query like this
e.g. String[] ids or List ids Query = @Query("select * from objects where obj_id in (:ids)")
e.g. String[] ids or List ids
Query = @Query("select * from objects where obj_id in (:ids)")