Files
supabase/studio/components/grid/query/Query.ts
2022-07-08 12:46:46 +08:00

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',
})
}
}