Is this possible? For example,
[GET("api/item/{id}/related")]
public dynamic GetRelatdItemsById(string id, Filter filter)
{
// get items related by id and optionally filter by `filter`
}
If this is possible, how should the query string be setup??
many thanks.