Complete reference for the SymbioseDB SDK and REST API endpoints.
npm install @symbiosedb/sdk
import { SymbioseDB } from '@symbiosedb/sdk';
const db = new SymbioseDB({
connectionString: process.env.DATABASE_URL
});
Execute a SQL query with parameterized values.
Execute a Cypher graph query on Apache AGE.
Perform semantic similarity search with pgvector.
List all tables in the database.
Retrieve rows from a table with filtering and pagination.
Insert new rows into a table.
Update a row by ID.
Delete a row by ID.
Execute raw SQL, Cypher, or GraphQL queries.
For complete SDK documentation with TypeScript types and examples, visit:
View SDK on GitHub →