I am looking for a way to include the result of a remote method when I make a query.
For example: I am querying Customer models. To include a related model you would use the include filter { filter: { include: ['orders'] } }
.
I need to do some processing on some related models before returning results.
What I am looking for is something akin to virtual properties from Mongoose. Is this possible or do I have to create a separate request for each customer after results returned?