Andrew O'Hara
06/01/2022, 9:04 PMList<Int>
?
val groupIds = Query.string().map(
nextIn = { text -> text.split(",").map { it.toInt() } },
nextOut = { it.joinToString(",") }
).defaulted("group_ids", emptyList(), description = "CSV of group ids")
Is there an existing way to do this? Or maybe we could add something like <http://Query.int|Query.int>().list(",").required("foo")
.