reslang icon indicating copy to clipboard operation
reslang copied to clipboard

Return parameters sent during MULTIGET

Open conrs opened this issue 5 years ago • 0 comments

It would be nice to have a query field in the top-level response for a MULTIGET. This could contain all the query parameters and is mostly useful for troubleshooting and later reference.

E.g.

GET /?name=meow&limit=6&offset=200

{ 
   results: [...]
   query: {
       name: "meow",
       limit: 6,
       offset: 200
   }
}

conrs avatar Sep 23 '20 22:09 conrs