mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
388 B
388 B
import { Client, Tables } from "react-native-appwrite";
const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setAdmin('') // .setKey(''); //
const tables = new Tables(client);
const result = await tables.createRows( '<DATABASE_ID>', // databaseId '<TABLE_ID>', // tableId [] // rows );
console.log(result);