import Honcho from 'honcho-ai';const client = new Honcho({ apiKey: process.env['HONCHO_API_KEY'], // This is the default and can be omitted});async function main() { const documents = await client.apps.users.collections.documents.query( 'app_id', 'user_id', 'collection_id', { query: 'x' }, ); console.log(documents);}main();
import Honcho from 'honcho-ai';const client = new Honcho({ apiKey: process.env['HONCHO_API_KEY'], // This is the default and can be omitted});async function main() { const documents = await client.apps.users.collections.documents.query( 'app_id', 'user_id', 'collection_id', { query: 'x' }, ); console.log(documents);}main();