Query the engineering record.
SQL Studio is a safe, read-only view of the same content graph used by Case Files, Identity, Resume, and Communications. Open it from the desktop for the interactive workbench; everything remains documented here without JavaScript.
Available tables
- cases (4)
- Engineering investigations and their verified outcomes.
- projects (8)
- Products, tools, and systems connected to the engineering record.
- skills (24)
- Languages, frameworks, data systems, and delivery tools.
- experience (4)
- Professional roles and evidence-backed scope.
- education (0)
- Verified education records. Empty until an owner-approved record is supplied.
- contact (4)
- Verified public communication channels.
- metrics (4)
- Public, owner-approved engineering impact signals.
- articles (4)
- Published engineering writing and technical explainers.
- artifacts (4)
- Published packages and engineering artifacts.
- repositories (7)
- External source repositories referenced by the content graph.
Supported syntax
SELECT with projections, WHERE equality or LIKE, ORDER BY, LIMIT, COUNT(*), plus SHOW TABLES, DESCRIBE, and HELP. Mutations are rejected.
SHOW TABLES;SELECT * FROM cases;SELECT name, status FROM projects ORDER BY name;SELECT name, category FROM skills WHERE category = 'frontend';DESCRIBE projects;