0
resultとresult-countを取得するために別々のAPIを作成する必要があるかどうか混乱します。または、結果APIのクエリ文字列に基づいてカウントを取得する必要があります。クエリ文字列は、そのリソースのフィルタリングに使用されている私にREST API:結果と結果の数を別々のAPIにする必要がありますか?
/api/results/ : Fetches all records
/api/results/?city=1: Fetches all records with city=1
/api/results/?iscount=1: Fetches the count of records i.e. list of cityId and count of record for respective cityId
/api/results/?city=1&iscount=1: Fetch the count of record for cityId=1
OR
/api/resultcount/: Fetches the count of records i.e. list of cityId and count of record for respective cityId
/api/resultcount/?city=1: Fetch the count of record for cityId=1
、私はカウントを取得するための別のAPIを作成するに賛成しています。意見?