Does order matter in filtering resources?
This seems to be returning all buys and not filtering by
user_id == user.id
.
2 Replies
You want
^user.id
That is filtering for all users where user_id
equals the associated user’s id.
Which is all users 🙂FUBAR! UGH Thank you!
Well now all my tests pass!