mirror of
https://github.com/supabase/supabase.git
synced 2026-06-24 22:59:10 +08:00
19 lines
419 B
TypeScript
19 lines
419 B
TypeScript
import { IQueryAction, QueryAction } from './QueryAction'
|
|
|
|
interface IQuery {
|
|
from: (table: string, schema?: string) => IQueryAction
|
|
}
|
|
|
|
export class Query implements IQuery {
|
|
/**
|
|
* @param name the table name.
|
|
* @param schema the table schema, by default set to 'public'.
|
|
*/
|
|
from(name: string, schema?: string) {
|
|
return new QueryAction({
|
|
name,
|
|
schema: schema ?? 'public',
|
|
})
|
|
}
|
|
}
|