Files
appwrite/docs/examples/1.8.x/client-react-native/examples/tables/create-rows.md
T

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);