import { Client, Databases } from "https://deno.land/x/appwrite@7.0.0/mod.ts";
type Appwrite = {
endpoint: string;
project: string;
key: string;
self_signed: boolean;
};
export async function main(auth: Appwrite, id: string) {
const client = new Client()
.setEndpoint(auth.endpoint)
.setProject(auth.project)
.setKey(auth.key);
const db = new Databases(client);
return await db.get(id);
}
Submitted by admin 497 days ago
import { Client, Databases } from "https://deno.land/x/appwrite@7.0.0/mod.ts";
type Appwrite = {
endpoint: string;
project: string;
key: string;
self_signed: boolean;
};
export async function main(
auth: Appwrite,
id: string
) {
const client = new Client()
.setEndpoint(auth.endpoint)
.setProject(auth.project)
.setKey(auth.key)
const db = new Databases(client);
return await db.get(id)
}
Submitted by admin 500 days ago
import { Resource } from "https://deno.land/x/windmill@v1.87.0/mod.ts"
import { Client, Databases } from "https://deno.land/x/appwrite@7.0.0/mod.ts";
export async function main(
auth: Resource<'appwrite'>,
id: string
) {
const client = new Client()
.setEndpoint(auth.endpoint)
.setProject(auth.project)
.setKey(auth.key)
const db = new Databases(client);
return await db.get(id)
}
Submitted by adam186 615 days ago