Is there any feature that queries only certain fields in the API based on user requests?
If this is the sample user data:
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "Sincere@april.biz",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
"zipcode": "92998-3874",
"geo": {
"lat": "-37.3159",
"lng": "81.1496"
}
},
"phone": "1-770-736-8031 x56442",
"website": "hildegard.org",
"company": {
"name": "Romaguera-Crona",
"catchPhrase": "Multi-layered client-server neural-net",
"bs": "harness real-time e-markets"
}
}
And if I hit https://jsonplaceholder.typicode.com/users/1?query=+id&+name&+username I want only the id, name and username in the response.
Or https://jsonplaceholder.typicode.com/users/1?query=-id&-name&-username to not send id, name and username in the response.
Is there any feature that queries only certain fields in the API based on user requests?
If this is the sample user data:
{ "id": 1, "name": "Leanne Graham", "username": "Bret", "email": "Sincere@april.biz", "address": { "street": "Kulas Light", "suite": "Apt. 556", "city": "Gwenborough", "zipcode": "92998-3874", "geo": { "lat": "-37.3159", "lng": "81.1496" } }, "phone": "1-770-736-8031 x56442", "website": "hildegard.org", "company": { "name": "Romaguera-Crona", "catchPhrase": "Multi-layered client-server neural-net", "bs": "harness real-time e-markets" } }And if I hit
https://jsonplaceholder.typicode.com/users/1?query=+id&+name&+usernameI want only the id, name and username in the response.Or
https://jsonplaceholder.typicode.com/users/1?query=-id&-name&-usernameto not send id, name and username in the response.