mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
remove: wrong examples.
This commit is contained in:
parent
eb201fe2ae
commit
6118d5b46d
2 changed files with 0 additions and 19 deletions
|
|
@ -1,4 +0,0 @@
|
|||
appwrite databases listTableLogs \
|
||||
--databaseId <DATABASE_ID> \
|
||||
--tableId <TABLE_ID> \
|
||||
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
import { Client, Databases } from "@appwrite.io/console";
|
||||
|
||||
const client = new Client()
|
||||
.setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
|
||||
.setProject('<YOUR_PROJECT_ID>'); // Your project ID
|
||||
|
||||
const databases = new Databases(client);
|
||||
|
||||
const result = await databases.listTableLogs(
|
||||
'<DATABASE_ID>', // databaseId
|
||||
'<TABLE_ID>', // tableId
|
||||
[] // queries (optional)
|
||||
);
|
||||
|
||||
console.log(result);
|
||||
Loading…
Reference in a new issue