I am writing a function, and I want to generate an unique ID to create a document, How to import ID from appwrite in Node Server SDK?
TL;DR
Solution:
To generate a unique ID every time you create a document using the Node Server SDK for Appwrite, you can use the `createDocument` function along with the `generateUUID` method provided by the SDK. Here's how you can do it:
1. Import the required modules:
```javascript
const { Client, Database } = require('appwrite');
```
2. Create a new instance of the `Client` and `Database` classes:
```javascript
const client = new Client();
const database = new Database(client);
```
3. Use the `generateUUID` method from the SDK to generate a unique