sealed trait SqlQuery extends ColumnOwner
- Alphabetic
- By Inheritance
- SqlQuery
- ColumnOwner
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def addFilterOrderByOffsetLimit(filter: Option[(Predicate, List[SqlJoin])], orderBy: Option[(List[OrderSelection[_]], List[SqlJoin])], offset: Option[Int], limit: Option[Int], predIsOneToOne: Boolean, parentConstraints: List[List[(SqlColumn, SqlColumn)]]): Result[SqlQuery]
Add WHERE, ORDER BY, OFFSET and LIMIT to this query
- abstract def canEqual(that: Any): Boolean
- Definition Classes
- Equals
- abstract def codecs: List[(Boolean, SqlMappingLike.Codec)]
The codecs corresponding to the columns of this query
- abstract def cols: List[SqlColumn]
The columns of this query
- abstract def contains(other: ColumnOwner): Boolean
- Definition Classes
- ColumnOwner
- abstract def context: Context
The context for this query
The context for this query
- Definition Classes
- SqlQuery → ColumnOwner
- abstract def directlyOwns(col: SqlColumn): Boolean
- Definition Classes
- ColumnOwner
- abstract def findNamedOwner(col: SqlColumn): Option[TableExpr]
- Definition Classes
- ColumnOwner
- abstract def isUnion: Boolean
Is this query an SQL Union
- abstract def nest(parentContext: Context, extraCols: List[SqlColumn], oneToOne: Boolean, lateral: Boolean): Result[SqlQuery]
Nest this query as a subobject in the enclosing
parentContext
- abstract def oneToOne: Boolean
Does one row of this query correspond to exactly one complete GraphQL value
- abstract def owns(col: SqlColumn): Boolean
- Definition Classes
- ColumnOwner
- abstract def productArity: Int
- Definition Classes
- Product
- abstract def productElement(n: Int): Any
- Definition Classes
- Product
- abstract def subst(from: TableExpr, to: TableExpr): SqlQuery
Yields a copy of this query with all occurences of
from
replaced byto
- abstract def toFragment: Aliased[SqlMappingLike.Fragment]
Render this query as a
Fragment
- abstract def toSubquery(name: String, lateral: Boolean): SqlSelect
Yields an equivalent query encapsulating this query as a subquery
- abstract def toWithQuery(name: String, refName: Option[String]): SqlSelect
Yields an equivalent query encapsulating this query as a common table expression
- abstract def withContext(context: Context, extraCols: List[SqlColumn], extraJoins: List[SqlJoin]): SqlQuery
This query in the given context
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asSelects: List[SqlSelect]
Yields a collection of
SqlSelects
which when combined as a union are equivalent to this query - def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def debugShow: String
- Definition Classes
- ColumnOwner
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isSameOwner(other: ColumnOwner): Boolean
- Definition Classes
- ColumnOwner
- def nameOption: Option[String]
The name, if any, of this
ColumnOwner
The name, if any, of this
ColumnOwner
- Definition Classes
- ColumnOwner
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementName(n: Int): String
- Definition Classes
- Product
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def productIterator: Iterator[Any]
- Definition Classes
- Product
- def productPrefix: String
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()