Context: I'm reading in a file where multiple fields are a list of IDs. I need to convert these fields into a Pipe to join them with other Pipes.
What I have tried:
val otherPipe = pipe
.project('fieldIwant)
.map { p: Pipe => p.toString.split(",") } // converts pipe -> array
.unique