Protected
databaseProtected
resolverAdds raw SQL to the where clause of the query.
If there is a filter()
set as well, the where is added after the filter using AND.
database.query(User).where(`id > ${id}`).find();
Use ${identifier('name')} = ${'Peter'}
for column names that need to be quoted.
Generated using TypeDoc
Adds additional selects to the query. Automatically converts the query to a partial (no class instances).