Core Features

Schema Explorer

Schema Explorer

WhoDB's schema exploration flow starts in Storage Units.

Use:

  • Storage Units to browse objects.
  • Describe to inspect object metadata and columns.
  • Graph to view object relationships.
  • Scratchpad to run metadata queries manually.

Explore View

Inspect Object Metadata

Open Storage Units and click Describe on an object card. The expanded card shows attributes exposed by the source plugin.

Table Metadata

For tabular sources, columns can include type information and relationship markers when the source exposes them.

Primary Key Column

Foreign Key Columns

Table With Indexes

Open Rows

Click Data on a Storage Unit card to open the row grid.

Data View

The data grid is where you search visible rows, add WHERE conditions, sort columns, paginate, edit rows, delete rows, and export.

Explore Relationships

Open Graph from the sidebar to view relationships visually.

Graph View

Graph nodes render metadata and loaded columns directly in each card. Clicking a node can load columns, and the Data button opens that object's data page.

Metadata Queries

For deeper database-specific metadata, use Scratchpad and your database's system catalogs.

Example for PostgreSQL indexes:

sql

SELECT *
FROM pg_indexes
WHERE schemaname = 'public'
  AND tablename = 'users';
Storage Units

Use Describe and Data actions.

Graph View

Inspect relationships visually.