Edits history of script submission #22341 for ' Get Database (appwrite)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    import { Client, Databases } from "[email protected]";
    
    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 hugo989 1 day ago