$query

Execute custom queries on the table and retrieve results based on the provided conditions. The $query method allows you to write and execute raw SQL or ORM-based queries directly, offering flexibility for complex data retrieval or manipulation operations.

var query = await Member.$query(
"SELECT * FROM members WHERE userId = '7ca9320b-1803-459c-a1ff-39b8d5e14a25'"
);

Last updated