Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 368 Bytes

File metadata and controls

13 lines (9 loc) · 368 Bytes

import { Client, Databases } from "react-native-appwrite";

const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const databases = new Databases(client);

const result = await databases.createTransaction({ ttl: 60 // optional });

console.log(result);