Skip to content

Database Node Catalog

Generated category

Database Node Catalog

Generated from 36 catalog nodes in Data/Database.

Data/Database/DeleteData/Database/GraphData/Database/Graph/MetaData/Database/Graph/QueryData/Database/Graph/WriteData/Database/InsertData/Database/MetaData/Database/OptimizationData/Database/SchemaData/Database/Search

Nodes in this category

Showing 36 of 36 generated node docs.

Open Database

Data/Database

Open a local database

Delete

Data/Database/Delete

Delete rows from a database table and return the removed rows

Purge

Data/Database/Delete

Purge Database

Create Graph Overlay

Data/Database/Graph

Creates a new graph overlay definition over existing database tables

Drop Graph Overlay

Data/Database/Graph

Deletes a graph overlay definition (does not drop underlying tables)

Open Graph Overlay

Data/Database/Graph

Opens an existing graph overlay and returns a connection for querying

Graph Schema

Data/Database/Graph/Meta

Retrieves the schema (labels and properties) of a graph overlay

List Graph Overlays

Data/Database/Graph/Meta

Lists all graph overlay definitions in the database

Cypher Query

Data/Database/Graph/Query

Executes a Cypher query against the graph overlay

Graph Neighbors

Data/Database/Graph/Query

Finds neighbor nodes by traversing edges from a seed node

Graph Subgraph

Data/Database/Graph/Query

Extracts a subgraph around seed nodes for visualization

SQL Query (Graph)

Data/Database/Graph/Query

Executes a SQL query against graph overlay tables via DataFusion

Upsert Graph Edge

Data/Database/Graph/Write

Inserts or updates an edge in the graph overlay's underlying edge table

Upsert Graph Node

Data/Database/Graph/Write

Inserts or updates a node in the graph overlay's underlying table

Batch Insert

Data/Database/Insert

Inserts multiple items at once. Faster than Upsert but might produce duplicates.

Batch Insert (CSV)

Data/Database/Insert

Inserts multiple items at once. Faster than Upsert but might produce duplicates.

Batch Insert (TDMS)

Data/Database/Insert

Reads a LabVIEW TDMS file and batch-inserts its channel data as rows into a vector database.

Batch Upsert

Data/Database/Insert

Inserts if the Item does not exist, Updates if it does

Insert

Data/Database/Insert

Faster than Upsert, but might write duplicate items.

Upsert

Data/Database/Insert

Inserts if the Item does not exist, Updates if it does

Count

Data/Database/Meta

Count Items

Get Schema

Data/Database/Meta

Get Local Database Schema

List

Data/Database/Meta

List Content

List Indices

Data/Database/Meta

Lists all indices on a database table

List Tables

Data/Database/Meta

Lists all available table names in the database location

Build Index

Data/Database/Optimization

Build Index

Drop Index

Data/Database/Optimization

Remove an index from a database table

Flush Database

Data/Database/Optimization

Flush any buffered writes to storage immediately

Optimize and Update

Data/Database/Optimization

Optimize and Update the Database

Add Column

Data/Database/Schema

Adds a column using a typed SQL expression (e.g. 0, '', CAST(NULL AS STRING)). LanceDB rejects bare NULL — wrap it in CAST(... AS <type>). Supported types: int, bigint, float, double, string, binary, boolean, date, timestamp.

Drop Column

Data/Database/Schema

Drops a column from the database table.

Make Column Optional

Data/Database/Schema

Marks a column as optional (nullable).

(SQL) Filter Database

Data/Database/Search

Filter Database

Full-Text Search

Data/Database/Search

Searches the Database using Full-Text Search

Hybrid Search

Data/Database/Search

Searches the Database using both Vector and Full-Text Search

Vector Search

Data/Database/Search

Searches the Database based on a Vector