I'm using strongloop's loopbackjs at work to implement an API.
For a model Cat
I have defined a remote method, lets call it meow
.
So i can do:
GET /cats/{:id}/meow
The Cat
model belongsTo the User
model.
Now I would like to be able to do something like this:
GET /users/{:id}/cats/{:id}/meow
Does anyone know how to do this?
I already tried nestRemoting, which only works for nested 'blueprint' methods.