I am trying to set up the following route
/**
* @Route(
* "/api/list/{setName}/{order}",
* condition= "request.get('order') == 'something' "
*
* )
*/
but I can only produce 404s because the condition is never true although I pass in an order argument. I guess the "request.get('order')" part is wrong, but how to do it?