Context

case class Context(path: List[String], resultPath: List[String], tpe: Type)

Context represents a position in the output tree in terms of,

  1. the path through the schema to the position
  2. the path through the schema with query aliases applied
  3. the type of the element at the position
Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def asType(tpe: Type): Context
def forField(fieldName: String, resultName: String): Option[Context]
def forField(fieldName: String, resultName: Option[String]): Option[Context]
def forFieldOrAttribute(fieldName: String, resultName: Option[String]): Context
def forPath(path0: List[String]): Option[Context]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product