Find all the entities for the specified query, named or positional arguments or by an example entity
Returns
This function returns array
Arguments
Examples
// find all blog postsormService.findAll("Post");// with a positional parametersormService.findAll("from Post as p where p.author=?",['Luis Majano']);// 10 posts from Luis Majano staring from 5th post ordered by release dateormService.findAll("from Post as p where p.author=? order by p.releaseDate",['Luis majano'],offset=5,max=10);// Using paging paramsvar query ="from Post as p where p.author='Luis Majano' order by p.releaseDate"// first 20 posts ormService.findAll(query=query,max=20) // 20 posts starting from my 15th entryormService.findAll(query=query,max=20,offset=15);// examples with named parametersormService.findAll("from Post as p where p.author=:author", {author='Luis Majano'})ormService.findAll("from Post as p where p.author=:author", {author='Luis Majano'}, max=20, offset=5);// query by exampleuser =ormService.new(entityName="User",firstName="Luis");ormService.findAll( example=user );