-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
개요
POST /users/{A uuid}/following/users/{B uuid} 를 호출하여 following 관계를 만들었음.
A가 B를 following하고 있는지 체크하기 위해 아래의 방법으로 호출하였으나, 결과가 원하는대로 나오지 않음.
재현 방법
<Case#1> GET /users/{A uuid}/following?filter=uuid={B uuid}
=> Result: 결과 없음
<Case#2> GET /users/{A uuid}/following/users/{B uuid}
=> Result: 항상 B가 내려옴
원하던 결과
<Case#1> B가 following가 아니라면 결과가 없어야 함. following 관계라면 B가 내려옴
<Case#2> B가 following가 아니라면 404 Not found. following 관계라면 B가 내려옴