It seems that Parallels Routing from Play 2.0.2 does not support nesting type options. I found a workaround, I defined an alias for Seq[Int] :
type IntSeq = Seq[Int]
and used it instead of the original type:
GET /places controllers.Application.query(filter: Option[IntSeq])
Now it works as expected.
lambdas
source share