**given:** "users": [ {"id": 1}, {"id": 2} ], "posts": [ {"id": 1, "text": "hello", "userId": 1}, {"id": 2, "text": "world", "userId": 2}] and access token: xxx.xxx.xxx for user id:1 **when:** curl -H "Authorization: Bearer xxx.xxx.xxx" http://localhost:3000/600/posts **expect:** _only_ [ { "id": 1, "text": "hello", "userId": 1} ] **actual:** [ { "id": 1, "text": "hello", "userId": 1}, **{"id": 2, "text": "world", "userId": 2}** ]