QueryIO

harness.sql.query.QueryIO
final case class QueryIO[I, O](queryName: String, fragment: Fragment, encoder: RowEncoder[I], decoder: RowDecoder[O])

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type
QueryIO[I, O]

Members list

Value members

Concrete methods

def apply(i: I): QueryResult[O]
def apply[I1, I2](i1: I1, i2: I2)(implicit ev: (I1, I2) <:< I): QueryResult[O]
def apply[I1, I2, I3](i1: I1, i2: I2, i3: I3)(implicit ev: (I1, I2, I3) <:< I): QueryResult[O]
def cmap[I2](f: I2 => I): QueryIO[I2, O]
def emap[O2](f: O => EitherNel[String, O2]): QueryIO[I, O2]
def map[O2](f: O => O2): QueryIO[I, O2]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product