MCPcopy Index your code
hub / github.com/appwrite/sdk-for-react-native / table

Method table

src/channel.ts:52–54  ·  view source on GitHub ↗
(this: Channel<TablesDB>, id: string = "*")

Source from the content-addressed store, hash-verified

50
51 // --- TABLESDB ROUTE ---
52 table(this: Channel<TablesDB>, id: string = "*"): Channel<Table> {
53 return this.next<Table>("tables", id);
54 }
55
56 row(this: Channel<Table>, id: string = "*"): Channel<Row> {
57 return this.next<Row>("rows", id);

Callers

nothing calls this directly

Calls 1

nextMethod · 0.95

Tested by

no test coverage detected