Query

ldbc.dsl.Query
See theQuery companion object
trait Query[T]

Trait for determining what type of search system statements are retrieved from the database.

Type parameters

T

Column Tuples

Attributes

Companion
object
Source
Query.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def to[G[_]](using FactoryCompat[T, G[T]]): DBIO[G[T]]

Functions for safely retrieving data from a database in an array or Option type.

Functions for safely retrieving data from a database in an array or Option type.

Attributes

Source
Query.scala
def unsafe: DBIO[T]

A method to return the data to be retrieved from the database as is. If the data does not exist, an exception is raised. Use the to method if you want to retrieve individual data.

A method to return the data to be retrieved from the database as is. If the data does not exist, an exception is raised. Use the to method if you want to retrieve individual data.

Attributes

Source
Query.scala