We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d3537 commit cf83a99Copy full SHA for cf83a99
src/SupabaseClient.ts
@@ -139,7 +139,9 @@ export default class SupabaseClient<
139
from<
140
TableName extends string & keyof Schema['Tables'],
141
Table extends Schema['Tables'][TableName]
142
- >(table: TableName): PostgrestQueryBuilder<Table> {
+ >(table: TableName): PostgrestQueryBuilder<Table>
143
+ from(table: string): PostgrestQueryBuilder<any>
144
+ from(table: string): PostgrestQueryBuilder<any> {
145
return this.rest.from(table)
146
}
147
0 commit comments