Skip to content

Instantly share code, notes, and snippets.

@devth
Created December 24, 2014 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devth/22ceca11c71d299cae12 to your computer and use it in GitHub Desktop.
Save devth/22ceca11c71d299cae12 to your computer and use it in GitHub Desktop.
sealed trait NestedProjection
case class Field(name: String) extends NestedProjection
case class NestedField(field: Field, child: NestedProjection) extends NestedProjection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment