Raphael ATALLAH

Results 3 comments of Raphael ATALLAH

Hi @FarmSol, this is because your library expects a promise, and you're giving it an array. You should use $q and return a proper promise.

Or maybe something like : ```` var plants = appDb.Plants.odata().filter(...).query(); return plants.$promise; ````