Raw Pipes
Google Drive
Connect Google Drive to search across documents, spreadsheets, and presentations.
Features
✓Document content extraction
✓Folder hierarchy support
✓Shared drive access
✓Real-time sync
✓Permission inheritance
✓File metadata indexing
Quick Start
import { Metalogue } from '@metalogue/sdk';
const client = new Metalogue({ apiKey: 'mtlg_...' });
// Connect Google Drive
await client.sync('google-drive', {
// Configuration options
});
// Query Google Drive data
const results = await client.query({
question: 'Your question here',
sources: ['google-drive']
});