Hi there.
So, I have a Many-to-Many relation of the following resources: “User” and “Job”. And I have a third resource “JobApplication” which connects both resources. The JobApplication resource has an attribute called “status”.
What I want is to request the following case:
Show me all Jobs of a User where the status of his Application is “checked”.
How can I do such a Request?
Something like: /users/1/jobApplications/jobs?filter[jobApplications.status]=checked
But it seems to be wrong.
Best regards