penpot/.serena/memories/backend/graph-experiment.md
Álvaro Tejero-Cantero 38004e6bb2
Add the graph subsystem and graph visualization console to the backend (#11101)
* 🎉 Basic lbug connection for ingestion

*  Add Penpot-to-Ladybug graph ingest vertical slice

*  Use embedded Ladybug Java API instead of CLI

* ♻️ Share Ladybug connection across ingest and stats

*  Validate graph ingest projections with Malli

*  Project nested shapes recursively into the graph

*  Load graph ingest via Ladybug COPY bulk import

* 🐛 Fix graph COPY ingest for multiline text names

*  Add Ladybug graph export to debug UI

*  Add debug graph console for in-memory Cypher queries

*  Add live file-change feed to debug graph console

*  Incrementally sync debug graph from Penpot file changes

*  Handle mov-objects in debug graph sync

* 🐛 Fix batch delete sync and keep graph console feed alive

* ♻️ Derive graph node schema from Malli registry

*  Add G6 graph view to debug graph console

POC per work/g6/plan.md. New /dbg/actions/graph-data exports the in-memory Ladybug session as plain JSON (per-table node queries + multi-table IsChildOf match, row cap 100k with truncation flag). Console page renders it with AntV G6 v5 (jsDelivr CDN, antv-dagre BT layout, color+glyph per node table, validated palette) and refetches debounced on live :file-change messages.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🐛 Fix list-column CSV ingest and serialize graph session access

COPY failed on any file with container shapes: list-typed DDL columns (shapes UUID[], points STRING[], strokes JSON[], ...) were JSON-encoded in staging CSVs, which Ladybug's list parser rejects. Write Kuzu list literals instead, typed per column. Also: value->clj no longer crashes on LIST/STRUCT values (binding lacks value_get_value support; fall back to string), and the debug session Connection is now guarded by a per-session lock — it was shared unsynchronized between the msgbus sync loop and HTTP query/export handlers, and one lost DETACH DELETE was observed under concurrent refetch load.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Split graph console in two columns; add file tree and fullscreen

Graph view moves to its own sticky right column (overrides .widget max-width). New /dbg/actions/graph-files endpoint lists teams -> projects -> files for the profile; the console renders it as a collapsible tree where clicking a file loads it. Maximize button fullscreens the graph panel and resizes G6 on fullscreenchange.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* ♻️ Replace fullscreen with in-page expand for graph view

Fullscreen API took over the whole output and broke window-manager splits (and is denied in some environments). The Expand button now toggles a fixed-position overlay covering the page while keeping browser chrome; Esc restores. Column positioning moved from inline style to the stylesheet so the expanded class can override it.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Fold containers as collapsible combos in graph view

Non-empty containers (Page, Frame, Group, Boolean, SVGRaw) render as nested G6 rect combos holding their own node plus direct children; Document stays a plain node. Double-click folds/expands (collapse-expand behavior); collapsed combos show a member count and re-route child edges. Fold state is read back from getComboData and re-marked on every refetch, so it survives live redraws. Layout gains sortByCombo to keep same-rank nodes grouped by box.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Fix graph view freeze on large files; add fold toggle and root rule

Root cause of the tab freeze on ~1700-node files was G6's default entrance animation: measured 1700 nodes at >2 min animated vs 1.5 s with animation: false. Secondary cost was antv-dagre (~7 s at that size); since IsChildOf is a tree, an O(n) tidy layout (depth = rank, post-order leaf slots, parents centered) computed client-side replaces it and renders the same file in ~1.4 s. A guard skips auto-render above 4000 nodes with an explicit Render-anyway button, so opening the console with a huge session loaded stays responsive.

Folding is now switchable ('fold containers' checkbox, persisted in localStorage) and generalized: any node with children folds except the IsChildOf root of the loaded graph, so Documents (and later Projects/Teams) fold automatically once they gain a parent node.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add layout dropdown to graph view

Adds a layout <select> next to the fold toggle, populated from the LAYOUTS map in the template: 'tree' (the O(n) preset layout, default) plus 13 G6 layouts (antv-dagre, dagre, circular, concentric, radial, grid, force, d3-force, force-atlas2, fruchterman, mds, combo-combined, random), all smoke-tested against combo data on this UMD build. Layout and fold toggle are independent; switching layouts recreates the graph instance (cheap with animation off); both choices persist in localStorage. antv-dagre stays available for when non-tree edges arrive.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add query-result subgraph, ws auto-reconnect, adaptive animation

The Cypher result pane now offers 'Show result in graph view': any UUID found in any result cell selects the matching nodes in the cached export and the view renders the induced subgraph (edges kept when both endpoints match); 'Show full graph' resets. No graph reconstruction from the query result is needed.

The notifications websocket reconnects automatically (3 s retry) and resubscribes + refetches on reopen, so backend restarts no longer permanently kill the live feed; a lost session now reports 'no graph session (backend restarted?) - reload a file' instead of a bare 404.

Animation is size-adaptive: graphs (or filtered subgraphs) up to 100 nodes render animated for didactics, larger ones stay animation-free; crossing the threshold recreates the instance like a layout switch.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add graph toolbar, animate toggle, filter columns, repaint skip

Graph view gains an on-canvas G6 toolbar (auto-fit, expand, restore - the fullscreen icons drive the existing in-page expand), an 'animate' checkbox that disables animation unconditionally when off (persisted, adaptive <=100-node rule applies only when on), and a ResizeObserver on the canvas so the panel follows window/flex resizes without touching the user's viewport. Preset tree positions are now only injected for the built-in tree layout, removing the tree-then-layout flash on animated re-renders under G6 layouts. Refetches skip the repaint when the display projection (nodes, edges, truncated) is byte-identical, so attribute-only change bursts no longer repaint.

Console: default query returns s/t name+label over all edges plus filter_src_id/filter_tgt_id columns; filter_* columns are hidden from the results table (client and server render) but still feed the 'Show result in graph view' id harvest, keeping the table legible while the graph filter stays available. The query text persists in localStorage across page reloads (restored only over the default, never over a server-rendered query). Legend shows colored Unicode glyphs matching node shapes instead of squares with textual annotations. Load/Unload buttons share one row (HTML5 form attribute), and the loaded file name links to the Penpot workspace via the legacy /#/workspace/<project-id>/<file-id> route resolved client-side from the files-tree payload.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🐛 Fix runaway graph panel growth and blank canvas; drop Expand button

Root cause of 'graph flashes on load then disappears' plus unbounded horizontal growth of the graph panel: fieldsets default to min-inline-size: min-content, so #graph-view-panel sized to its content, and the new ResizeObserver->setSize path closed a feedback loop (setSize -> slightly wider G6 canvas -> wider fieldset -> wider .dashboard flex column -> observer fires) that grew the page ~10px per frame and wiped the painted canvas on every step. Fix severs the feedback path: #graph-view-panel gets min-inline-size: 0, #graph-canvas gets overflow: hidden, and the page section gets flex: 1 1 0 with min-width: 0 so column widths are viewport-driven, never content-driven. This also fixes the original narrow-window scrollbars defect for real. The observer stays (guarded by a current-size comparison) because G6's autoResize is inert on this UMD build (verified: window resizes left the canvas size untouched); the inert autoResize flag is dropped. Legend items now join with spaces so the nowrap spans can wrap between entries.

Also removes the header Expand button - the toolbar's expand/exit icons cover it, Esc still restores.

Verified against the running devenv with a logged-in profile and variants_simple loaded: graph renders and persists, widths stable over multiple seconds at 1400px and 1000px viewports with no horizontal overflow, canvas follows both window shrink and grow, toolbar expand gives a full-page canvas and Esc restores.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Make the default query self-explanatory; link the Cypher docs

The default query is now multi-line with // comments that explain the filter_* column convention in place (Kuzu accepts comments and blank lines mid-statement; verified against an in-memory database through the console query path). The query fieldset is retitled 'LadybugDB Cypher' with the Cypher word linking to https://docs.ladybugdb.com/cypher/.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 📎 Fix linter issues

*  Add Component nodes and IsInstanceOf edges

* 🐛 Fix memory leak

*  Style Component nodes and IsInstanceOf edges in graph console

Slice-3 export sends edges with a rel field. Derive tree ranking, combo derivation and fold-ability from IsChildOf only; draw other rels as overlay edges with per-rel styles (EDGE_STYLES: IsInstanceOf violet dashed, matching the new Component diamond in NODE_STYLES). Legend now lists only displayed node tables and rels, re-rendered per redraw; help text trimmed to essentials.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add graph diff marks with step fade to graph console

Each display-changing refetch is a step: added nodes/edges get a green halo, removed ones stay as ghosts with a dashed crimson halo (nodes, fading opacity) or thicker crimson stroke (edges), re-entering layout and combos through their ghost IsChildOf edges. Marks fade linearly and drop after N steps; N is the new "fade" number input (localStorage, 0 = off). Dash + fade carry the added/removed distinction under red-green CVD (#40c057/#c2255c, deutan dE 17.4); diff is vs the previous display step, not arbitrary revisions.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 Reserve chroma for changes in graph console diff mode

Monochrome entity scheme: all node tables share one slate hue, lightness separates within-glyph siblings (validated, worst pair dE 17.5), SVGRaw becomes the hollow hexagon, both rels go grey with dash as the only separator. Diff marks now own all color: thick green/crimson stroke ring (dashed for removals) plus a larger, subtler halo; the legend gains +/- entries while marks are live. Two additions to guide the eye: a brief DOM-overlay pulse on age-0 elements (independent of the G6 animation gate) and a "fold unchanged" toggle that collapses every combo not on an ancestor path of a changed element.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🐛 Expand folded combos that gain changed elements

setData merges datum props by id on a live G6 instance, so omitting style.collapsed retained a previous true: with "fold unchanged" on, a change inside a folded combo pulsed but never expanded it. Write the boolean explicitly both ways.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Label edge rels with compact unicode symbols

Dash variants alone cannot carry the growing rel roster: EDGE_STYLES entries gain a sym rendered as a small mid-edge label with a white backing (IsInstanceOf = "∈"; IsChildOf stays unlabeled as the background structure), and the legend shows the symbol. Convention from the abacus viewer EDGE_SYM dict.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add node inspector panel to graph console

Clicking a node fetches its full attribute row (MATCH (n:`Table` {id: uuid(...)}) RETURN n.*) through the query endpoint and renders non-null attrs into a panel under the canvas (count of empty attrs noted). Panel over tooltip: projected tables carry ~80 columns, and the panel persists for reading without obstructing the graph. Table/id are validated before Cypher interpolation; the listener is re-attached on every instance recreation.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 Graph console QoL round

"Show result in graph view" moves into an actions bar above the results table; results scroll inside a 45vh container (client and server render paths); the Loaded-session fieldset gains a live "Graph size" line that stays fresh through skipped repaints; IsInstanceOf mid-edge label becomes the spelled-out rel name (∈ read as membership, not derivation) with the legend falling back to the dash-arrow for long syms.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Sync Component library changes into the Ladybug graph

* 💄 Polish graph console session panel and edge labels

Loaded-session fieldset: graph size gains a resident-memory estimate (fit to graph_sizes.md: ~1.1 MiB floor + ~5.4 KiB/node) with per-table counts on hover, replacing the load-time Projection stats; loaded-at compacts to local HH:MM with the full instant on hover. Edge rel labels drop to 7 px and lose the dashed stroke — the text label alone carries rel identity.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add PNG export and hover tooltips to graph console

Toolbar gains an export item: graph.toDataURL({mode: "overall"}) downloads the whole laid-out graph as graph-<revn>.png — page-chrome-free captures, also the fast path for agents debugging the console. A hover tooltip (table, label, id) backs the reduced/absent labels on dense layouts.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 Prune graph console layout roster and tune overlap

Remove grid, random, force, fruchterman, force-atlas2 (nothing over the kept set) and mds (stress layout degenerates to spokes on tree distances, no collision term to tune). Parameterize the keepers against node overlap — concentric/radial get preventOverlap+nodeSize, d3-force a collide radius — and shrink node labels to 7 px on those layouts (DENSE_LABEL_LAYOUTS), verified against variants_simple (72 nodes).

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Highlight clicked node neighborhood in graph console

click-select behavior with degree 1: the clicked element keeps a black ring, direct neighbors stay full-strength, everything else dims to 0.2 opacity (inactive state); clicking empty canvas clears. Works on edges too (selects both endpoints) and composes with the node inspector on the same click.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Add overview mode: fold containers at or beyond a depth

"fold >= depth" number input (root = 0, empty = off, localStorage): every combo whose container sits at that IsChildOf depth or deeper collapses, giving a top-of-file overview (e.g. 2 folds the containers hanging from a Page). Composes with fold-unchanged — depth folds first, changed ancestor paths are then drilled open. Derived fold state overrides manual folds while active.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🐛 Restore fold-containers as the combo master gate

Since fold-unchanged and depth folding arrived, withCombos ORed them in, so unchecking "fold containers" could no longer remove the combo boxes. The checkbox is the gate again; the derived fold rules are dormant without it.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 Console UI polish round

Merge the load form and files tree into one "Load graph from Penpot" box (tree first, uuid + Load/Unload in a row); Loaded session carries HH:MM in its legend; the Live changes box stays hidden until the first change arrives; query fieldset reads "Query graph (LadybugDB Cypher)" with the link covering both terms. Drop the hover tooltips (distracting, useless zoomed out) and the resident-size estimate (per-table counts stay on hover); every toggle gets a "When set/checked ..." title. Depth fold: 0 now expands every container (no more hunting for max depth). Node inspector: two-column flow, structured or long values folded behind the file-tree disclosure triangle.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Report actual graph memory from the buffer manager

graph-data gains bm-bytes (CALL bm_info() -> [mem_limit mem_usage], nil-safe, under the session lock); the session panel shows it as MiB behind the node/edge counts — real resident memory replacing the removed estimate.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 Console control-bar and session-panel rework

Left column narrowed 440->330 px (uuid input flexes). Control bar reordered: layout first, then animate and fade (narrow inputs), then the fold set; "fold containers" renamed "foldable containers" (on = foldable, not folded). Load becomes Reload once a session exists (same operation as the removed Full-reload button — load-session! on the current id; tooltip explains the fallback role) with Unload beside it. Session panel: revisions on one line ("ingested at N · graph now M", hover explains the difference), duplicate uuid after the file name dropped. Tried and rejected: fishbone (no positions on graph data) and compact-box (G6 tree layouts walk parent->child, IsChildOf points child->parent).

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Legend entries toggle node-table visibility

Clicking a legend entry hides/shows that table across the view (struck-through while hidden, kept listed for re-enabling; pure client-side id filter through filteredGraphData, edges drop with their endpoints, ghosts respect it). Also: setting fold >= depth above 0 now switches foldable containers on — a positive depth was silently inert without combos.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

*  Enable the edge-bundling plugin

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 Session breadcrumb, changelog colors, spacing

File line becomes team › project › file (clickable) with the resident-memory figure beside it (moved up from the graph-size line; breadcrumb resolves from the files-tree payload, so files outside the profiles teams show plain). add-obj/del-obj in Live changes wear the canvas diff colors. Paragraph margins tightened above Feed; left column 330→350 px.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🐛 Guard renders against heavy graphs; add ?safe escape hatch

A heavy file could freeze the tab on load-and-render despite the animation gate: the render guard counted nodes only, and the edge-bundling plugin is iteration-heavy in edges. Guard now also trips on edges (8000), edge bundling only activates at <= 300 edges, and /dbg/graph?safe disables auto-render entirely (counts + "Render anyway"), so a page that hung can always be re-entered with the session intact.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🔥 Remove the edge-bundling plugin

Bundled edges render unsmooth and ugly on this build; the gating constant goes with it.

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 💄 One row per operation in the Live changes table

Columns revn | op | id: the revn repeats across a batch, the op wears the canvas diff colors (shape/attrs detail on hover), and the id column shows the uuid last group with the full uuid on hover, or N/A for ops without a subject id (e.g. mov-objects).

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>

* 🐛 Use app.system/system in the graph ingest helper

develop renamed app.main/system to app.system/system and dropped the
app.main require while this branch was away. Rebasing replays the old
call, so clj-kondo reports an unresolved namespace and the ns will not
load.

*  Put the graph subsystem behind a flag, off by default (#11075)

`app.graph.ladybug` imports `com.ladybugdb.*` at namespace load. Two
namespaces reach the subsystem and both required it at the top level:
`app.http.debug`, which registers the `/dbg` routes, and
`app.srepl.main`, which loads with the REPL server. Every backend built
from this branch therefore linked the Ladybug native library into the
JVM at boot, whether or not a graph was ever used.

Add a `:graph` flag to `varia`, deliberately absent from `default` so
that a released Penpot ships with the subsystem off. Both require sites
now resolve `app.graph.*` at call time, so with the flag off no
`com.ladybugdb` class is loaded. The nine `/dbg` graph routes are
registered only when the flag is on, and 404 otherwise. The `/dbg` admin
gate is untouched: the flag decides which routes exist, not who may
reach them. When the flag is on, route init requires the subsystem
eagerly, so a missing or unusable native library fails the boot rather
than the first console request.

No tracked file turns the flag on. `backend/scripts/_env` leaves it out,
so a devenv boots with the subsystem off exactly as a released build
does, and `docker/images/docker-compose.yaml`, the self-hosting
distribution, is untouched. Whoever works on the graph turns it on for
one checkout through the gitignored `backend/scripts/_env.local`, which
every backend and exporter dev script sources right after `_env`.

Verified with `-verbose:class` over a boot's namespace load plus
`ig/init-key ::routes`: 9 `com.ladybugdb` classes before this change
with no flag set, 0 after it with the flag off, 9 with `enable-graph`.

* ⬆️ Take Ladybug 0.19.1

`com.ladybugdb/lbug` moves from 0.18.0 to 0.19.1, the current release on
Maven Central. The engine fixes a SIGSEGV on an unwrapped parameter and
moves parameter coercion out of JNI, so shipping 0.18.0 would land a
native library into `develop` with a known crash already fixed upstream.

Nothing else changes. This branch has no `app.graph.arrow`, so the
top-level Arrow field-name backticking that 0.19.x retires does not
exist here and there is no workaround to remove alongside the bump.

AI-assisted-by: mixed models

* 📎 Pin the graph console's G6 bundle to an exact version

The console loaded `@antv/g6@5` from jsDelivr, a floating major range,
so the JavaScript served into the page could change without a Penpot
release. Pin it to 5.1.1, the version the range resolves to today.

Where the dependency finally belongs is an open question for review:
vendored into `backend/resources`, declared in `frontend/package.json`
if the console moves out of `/dbg`, or left on the CDN. Pinning removes
the floating-code problem without pre-empting that decision.

AI-assisted-by: mixed models

*  Add graph provenance, column naming and two transforms

A projected graph is a cache of one file at one revision, built by one
schema, and nothing in it said so. `GraphMeta` records the file, the
revision, the schema version and the producer, and is written last, so
its presence also marks the build complete and its contents say whether
a cached database is still worth opening.

- `graph/meta.clj`: the `GraphMeta` table and its writer.
- `graph/schema/contract.clj`: one place that maps a Penpot key to its
  graph column. The rule is snake_case of the key; every exception, be
  it a rename, a drop or a type override, is recorded there with its
  reason, so a divergence is a diff to review rather than a silent
  rename.
- `graph/project/document.clj`: `page-id` and the inherited
  `component-id` are written during the tree walk, which already knows
  both, rather than by a post-ingest statement. `graph/sync.clj` does
  the same on the incremental path, so a live-synced graph matches a
  rebuild.
- `graph/project/transforms.clj`: a registry, so adding a derived-link
  pass is one entry. Adds `RefersTo` (from `shape-ref`) and
  `FillsSwapSlot` (from `swap-slot-*` entries in `touched`, then
  stripped as `ctk/normal-touched-groups` does).
- `graph/debug.clj`, `graph/stats.clj`: enumerate relationship tables
  from the catalog instead of naming them, so the console's graph view
  and the ingest counts pick up new edge types without being told.
- `graph/debug.clj`, `http/debug.clj`: `graph-export` gains
  `source=session`, which snapshots the live in-memory console graph
  through EXPORT/IMPORT DATABASE. Live sync moves that graph away from a
  fresh projection, and taking it away to query elsewhere is the point
  of asking for it.

AI-assisted-by: mixed models

* 🐛 Write graph values Ladybug's CSV reader cannot carry through Cypher

Three parity failures against beadpot's suite, all one cause: the bulk loader
put compound and multi-line values into CSV, where Ladybug parses a field's
*contents* as a literal with no escape mechanism at all. Verified against
0.18: a comma inside a list element ends the element, quotes are kept as part
of the value rather than delimiting it, and the parallel reader rejects
quoted newlines outright.

So a value now goes through CSV only if it cannot be misread there — UUIDs,
numbers, booleans, single-line strings, and lists of those. Everything else
(MAP, STRUCT, STRING[]/JSON[], any string containing a newline) is written
after the COPY by one Cypher statement per row, where `app.graph.ladybug`
escapes properly. Parquet removes the distinction entirely and is still the
right destination (masterplan P0 T1); this is what CSV can honestly do.

Consequences beyond the encoding:

- `touched` entries reached the graph as `:swap-slot-…`, keywords stringified
  with their colon, so `LinkSwapSlots` matched nothing. Keywords now render
  through `name`.
- Shape names lost their newlines to a flattening step that existed only to
  keep the CSV writer happy. They are preserved.
- `applied_tokens` keys are rendered camelCase, the form Penpot's own JSON
  encoder produces and the one beadpot's `AppliedTokenKey` holds — a MAP
  column's keys are values, not schema, so they are not snake_cased.
- `link-component-instances!` keys on `component-file`, not `component-id`
  alone. The projection denormalizes `component-id` down the shape tree, after
  which it no longer tells an instance head from a shape inside one, and the
  transform linked every descendant frame; `ctk/instance-of?` requires both
  keys anyway. IsInstanceOf on the variants fixture: 78 -> 60, matching
  beadpot exactly.

`app.graph.schema.nodes/format-column-value` is now the single place that
knows a column's type and its contract details, used by the bulk loader and
the incremental sync alike so the two cannot disagree about a value's shape.

*  Type graph columns as tightly as Ladybug allows

Ladybug is schema-first and strongly typed: a property key gets its type
at table-creation time and there is no widening later. That makes the
Malli to Ladybug mapping the whole of the graph's typing, and it was
leaving a lot on the table: a transform stored as `STRING`, a rect as
`JSON`, a set of feature flags as a single `STRING`. A column typed
`DOUBLE[4]` is four numbers a consumer reads as a tensor row; the same
value as JSON is text somebody has to parse and trust.

`app.graph.schema.types` now maps, in order: scalars; Penpot value types
whose layout is fixed even though Malli only sees a map or a string
(`::gmt/matrix` to `DOUBLE[6]`, `::gpt/point` to `DOUBLE[2]`,
`::grc/rect` to `DOUBLE[4]`, `::clr/hex-color` to `UINT32`); then
structure, with collections to `T[]`, `:map-of` to `MAP(k, v)`, and a
closed map of scalars to a `STRUCT`. JSON is the fallback of last
resort, for schemas that genuinely admit more than one shape.

Two defects fell out. `::sm/set` was unmapped, so `features` and
`migrations` were single strings rather than `STRING[]`, and
`::sm/one-of`, how Penpot spells a closed set of keywords, was unmapped
too, so `blend-mode`, `grow-type`, the constraints and every `layout-*`
were mistyped.

A tight column is only worth having if the writer fills it in that
shape, so `app.graph.schema.values` shapes a value for its type: a
matrix record into six doubles, a hex colour into a packed integer, a
map into a struct's fields. Both writers go through it, so the bulk load
and the incremental sync cannot disagree. What that required:

- STRUCT field names must be backticked in the DDL *and* in every
  literal, because a grid cell has a field named `column`. The catalog
  reports them bare.
- A struct literal's type is its field list, so every declared field
  must appear, and an absent one needs `cast(NULL, '<type>')`. A bare
  NULL is typed STRING and changes the struct's type.
- `STRUCT(…)[]` starts with `STRUCT(` but is a list, so the list check
  comes first.
- Nested lists cannot be rendered with `str`: Clojure's `[1 2]` is
  space-separated and Ladybug reads it as a one-element array.

Three more corrections in the same area:

- `project-attrs` used truthiness where it meant `some?`, so `opacity 0`
  and `blocked false` projected as absent.
- Set-valued columns are written sorted. A set has no order, so the
  column varied between builds of the same file, which is precisely what
  stops two builds being diffable.
- An empty collection is written as `[]` rather than skipped. A shape
  with no fills has none; NULL would say "unknown".

Renamed the `kuzu-*` helpers to `ladybug-*`: Kùzu is deprecated and
Ladybug substitutes it, so a name bearing the engine should bear this
one. The one remaining mention cites the upstream issue Ladybug
inherits.

AI-assisted-by: mixed models

*  Add the file-level graph columns and tighten the svg ones

Split out of "🐛 Declare the shape attributes stored files carry",
which is now #11125 and carries only its `common/` half. This commit is
the graph's own side of that change, and it stays on this branch.

`app.graph.schema.contract` pins `svg_viewbox` to `DOUBLE[4]` and
`svg_transform` to `DOUBLE[6]`. The shape schema types both `:map` on
purpose, because legacy files hold them as plain maps rather than as
`::grc/rect` and `::gmt/matrix` records, and a tighter *schema* would
reject those files. A tighter *column* costs nothing, since
`app.graph.schema.values/coerce` reads either form.

`app.graph.schema.nodes` declares four file-level attributes as
projection `:extra` rather than in `ctf/schema:file`: `:options`,
`:backend`, `:comment-thread-seqn`, and `:ignore-sync-until`. Declaring
them in the file schema breaks saving, measured at 185 failures, because
`app.binfile.common/update-file!` derives its UPDATE column list from a
file map's keys and the `file` table has no `backend` column, that value
being synthesized on read. An `:extra` is local to the graph and cannot
reach a write.

`app.graph.project.document` lifts `:options` out of `:data` before the
blob is dropped, so a consumer reads file-level configuration without
opening the blob.

AI-assisted-by: mixed models

*  Add the Arrow prerequisites for in-memory bulk load

lbug pulls arrow-memory-core and arrow-vector but no allocation-manager implementation, so RootAllocator cannot be constructed; arrow-memory-netty 18.2.0 matches the arrow-vector lbug already brings and pulls only netty-buffer, netty-common, jackson and slf4j-api, all of which the backend already has.

--add-opens=java.base/java.nio=ALL-UNNAMED is the second half: without it MemoryUtil's static initializer dies with an InaccessibleObjectException that surfaces as an unhelpful NoClassDefFoundError from anything touching RootAllocator. It has to be present at JVM start, hence all three places. Note app.main/restart will not pick it up — it restarts integrant inside the same JVM, so the process must be restarted.

Worth a reviewer's attention: this is a JVM-wide flag added for one subsystem. It is the standard Arrow requirement and grants nothing beyond reflective access to java.nio, but it strengthens the case for putting the whole graph subsystem behind a feature flag.

*  Bulk load through in-memory Arrow; delete the CSV loader

app.graph.arrow stages rows as Arrow VectorSchemaRoots and COPYs from them. No file is written at any point and no value is rendered as text for the engine to re-parse, so the defect class that produced three of this branch's four backend defects cannot recur.

app.graph.bulk is deleted whole. csv-representable?, defer-to-cypher?, multiline?, fixup-statements, ladybug-literal, ladybug-list-element, ladybug-list-cell and staging-dir go with it, along with the post-COPY Cypher pass that emitted one SET per row.

Measured before deciding: the fixup pass was ~77% execution, 16-22% parse and 6-7% round-trip, and prepared statements could not have recovered any of it — every fixup row carries a MAP column and Ladybug binds scalars only. So this replaces rather than optimizes. Marginal ingest 4.0 -> 1.21 ms/shape; ~25 s extrapolated at 20k shapes against the ~2 min the CSV path projected. Size unchanged.

Four engine facts the implementation rests on, each verified against 0.18.2 with a standalone probe:

- An Arrow table is not a COPY source identifier but is a MATCH-able node label.
- A MAP vector's entries child must be a non-nullable struct, and MapVector.getWriter promotes it to a sparse union, so map vectors are built from an explicit Field and filled child-first.
- Ladybug names a staged table's columns and struct fields from the Arrow field names and quotes none of them, so anything needing quotes must arrive quoted — hence cypher-property-key, not column-name, names the Arrow fields.
- createArrowRelTable cannot resolve endpoints against a UUID-keyed node table under any encoding, so edges stage as a node table and the COPY subquery joins them.

values/coerce is reused unchanged, so the Arrow and Cypher writers cannot disagree about a value's shape; nodes/column-map-key-fn is extracted so they cannot disagree about a MAP's key spelling either.

Verified with pytest --graph-origin=penpot-only unchanged at 225/38/1 and --graph-origin=penpot unchanged at 258 passed / 2 pre-existing failures, both baselines re-established against a reverted backend rather than assumed; with bp graph diff between a CSV-built and an Arrow-built graph reporting "Graphs agree"; and with an adversarial round-trip carrying a quote, a backslash, a newline, a CRLF and a tab through STRING, STRING[] elements and MAP values.

The diff was necessary, not belt-and-braces: both parity suites passed an earlier revision of this change that was writing EDN into every JSON column, because beadpot's assertions never parse those columns. It also showed Arrow correcting a CSV defect — an empty Component.path was being stored as NULL, because Ladybug's CSV reader cannot distinguish an empty field from an absent one.

*  Add a prepared-statement surface to the graph connection

`app.graph.ladybug` could only run Cypher as text. Every value the sync
path writes is therefore concatenated into the statement, and nothing can
ask the engine whether a statement is even valid without running it.

Add the four functions that close both gaps. `prepare-on-connection!`
parses and binds without executing. `execute-prepared!` binds a parameter
map and runs it. `exec-prepared-on-connection!` prepares every statement
in a batch before executing any of them, so a parse or bind failure
aborts before the first mutation. `validate-on-connection!` returns
`{:ok? :error :read-only?}` instead of raising, which is what a gate
wants.

`->param-value` is the only `Value` constructor on the write path. It is
unconditional: on lbug 0.18.2 an unwrapped parameter does not raise, it
SIGSEGVs the JVM inside `lbug_value_clone`. Parameters are scalars only,
because the JNI `Value` constructor takes no list or map, so `MAP`,
`STRUCT` and `T[]` columns stay literal-rendered and the `:else` branch
raises rather than crashing.

Two departures from the design, both closing a JNI-handle leak on the
error path: `prepare-on-connection!` closes the failed
`PreparedStatement` before raising, and `execute-prepared!` closes every
`Value` it built, including the ones built before a later parameter was
rejected.

`as-statement` accepts a bare string, so the sync builders can convert to
bound parameters one family at a time rather than in one commit.

AI-assisted-by: mixed models

* 🐛 Write the document revision to the column that exists

`set-document-revision-statement` emitted `SET d.revn`, but the column is
`revision`: the beadpot contract renames `:revn` and the DDL has followed
it since. The statement is the last one in every sync batch, so each
batch raised after its mutations had already committed, and the session's
in-memory index stayed frozen at its load-time revision.

Name the column through `nodes/cypher-property-key` rather than spelling
it, so the DDL and the statement cannot disagree again.

Found by the binder gate in the next commit, on its first run.

AI-assisted-by: mixed models

*  Gate every sync statement template through the binder

Nothing checked that the eleven Cypher templates `app.graph.sync` emits
still bind against the DDL the schema registry generates. A renamed
column, a dropped table or a reserved word emitted unquoted surfaced only
when a live session ran the statement, and by then the batch's earlier
mutations had committed.

`backend-tests.graph-binder-gate-test` opens a `:memory:` database,
creates the live schema on it, and *prepares* one instance of each
template without executing any of them. 14 tests, 51 assertions: the
eleven templates, label coverage over all twelve registered node tables,
and two assertions on the gate itself, that a `RETURN` reads as read-only
and a `SET` does not, and that an unbindable statement is reported rather
than thrown.

It was not green on HEAD: it caught `set-document-revision-statement`
writing a column that no longer exists, fixed in the previous commit. Red
on both injected templates tried.

No `:jvm-opts` change: CI's `-M:dev:test` already carries the native
access flags the engine needs.

AI-assisted-by: mixed models

* 🐛 Let the engine quote the Arrow field names it interpolates

`node-batch` named every top-level Arrow field with backticks, so that a
column whose name is a reserved word (`Page.index`, `Document.options`)
survived the DDL Ladybug generates for a staged table. The engine now
quotes those identifiers itself, and it does not collapse a doubled
backtick, so a pre-quoted name reaches the parser as ``index`` and
`createArrowTable` fails outright:

    Parser exception: mismatched input '``' expecting PRIMARY

Name the fields with `column-name`. The `COPY` projection is Cypher
rather than DDL and keeps its own backticks through
`cypher-property-key`, and STRUCT member names keep theirs too: those
come out of `LogicalType::toString()`, which the DDL builder does not
touch, so an unquoted member called `column` still fails to parse.

Measured with `probes/arrow/probe25.clj` against lbug 0.19.1: a plain
top-level reserved word loads and reads back, a pre-quoted one fails to
parse, a plain STRUCT member fails to parse, and a pre-quoted one loads
and reads back.

Also re-dates the engine facts in the `app.graph.arrow` docstring to the
version they were checked against, drops the SIGSEGV note from
`->param-value` now that `Connection.execute` rejects an unwrapped
parameter, and removes two references to the CSV loader.

AI-assisted-by: mixed models

* 📚 State what the graph schema does, not what it mirrors

The graph namespaces explained themselves by citing a separate project
whose Python pipeline reads the graphs this backend writes. A reader of
this repository does not have that project and should not need it, and a
docstring that justifies a choice by pointing elsewhere cannot be checked
here.

Every claim survives; only the framing changes. Column names and types
are Penpot's own decision, recorded with the reason for each divergence
from the snake_case default. The transform registry describes the edges
it materializes. The denormalizations in `app.graph.project.document`
are justified by the walk already holding both answers.

Three corrections fall out of the rewrite:

- `app.graph.schema.contract` claimed a test, `graph_contract_test`,
  that walks a checked-in schema manifest and fails on any divergence.
  No such test exists. The paragraph is gone.
- `app.graph.project.document` pointed at
  `app.graph.meta/projection-transforms`, which does not exist.
- `app.graph.project.transforms/registry` claimed its entries were "in
  application order" while `apply-transforms!` reduced over the literal
  vector. The three registered transforms read disjoint columns, so the
  order is not load-bearing. The docstring now says so, and the one real
  ordering constraint is stated where it applies: `link-swap-slots!`
  strips `swap-slot-*` entries from `touched`, so anything reading
  `touched` has to run before it.

`contract/pending-beadpot-columns` becomes `contract/unprojected-keys`.
It is referenced nowhere else.

AI-assisted-by: mixed models

*  Refuse a mutating query from the graph console

`debug/query-session!` ran whatever it was handed against the session
connection. A session graph is a projection of a file, rebuilt from that
file by Reload, so a mutation from the console produces a graph no
rebuild reproduces and no query result explains.

Bind the statement against the live schema first. A statement that does
not bind reports the binder's own message and executes nothing, which
also turns a misspelt table or property into an immediate error instead
of an empty result. A statement that binds runs only when the engine's
own read/write analysis calls it read-only.

The console's query box is labelled read-only. Load, Reload, Unload and
live sync are unaffected: they are separate handlers and do not go
through this path.

AI-assisted-by: mixed models

* 🐛 Keep a synced graph equal to a rebuilt one

Cold projection and incremental sync are two implementations of one
mapping and nothing checked that they agree. They did not.

`backend-tests.graph-sync-parity-test` projects a file into one
`:memory:` database, applies a change list to that database and the same
list to the file data, projects the result into a second database, and
diffs the two down to the row and the column. It found four
disagreements, each fixed here.

**Sibling order was inverted.** A container's stored `:shapes` list runs
bottom to top and `IsChildOf.position` numbers children in Penpot
z-order, so appending to the list means taking position 0 and pushing
every sibling up. Sync instead handed each new child the next free
number, so any container edited live carried its children in the
opposite order to a rebuild, and a delete left a gap where a rebuild
renumbers densely. `insert-position` and `renumber-siblings` put the two
paths on the same rule for `:add-obj`, `:mov-objects` and `:del-obj`,
including a block move and `:after-shape`.

**A moved shape kept its old parent.** `:mov-objects` moved the edge and
left the shape's own `parent_id` and `frame_id` columns pointing at the
container it came from. Both now follow, and `frame_id` follows through
the whole subtree the shape carries, as
`app.common.files.changes` does for `:mov-objects`. A top-level shape's
column holds `uuid/zero`, the page's root frame, while its edge points
at the Page.

**A container's `shapes` column went stale.** Nothing maintained it
after an add, a move or a delete. It is now rebuilt from the sibling
order on every change that touches a container.

**Pages came out backwards.** `projection-data` reversed `:pages` before
numbering them, which is right for child shapes and wrong for pages:
`:pages` is the tab order and has no second ordering to undo. `Page.index`
and the page's `IsChildOf.position` are now that order.

One defect the test does not reach, fixed on the way past:
`index-add-shape!` accepted `:component-ctx` and dropped it, so a shape
added under an instance head added in the same session inherited no
`component-id`.

AI-assisted-by: mixed models

* 🐛 Build a synced page node the way the projection does

`apply-add-page` sent the new Page node through `nodes/validate-node`,
which checks a map against the registry schema and returns it unchanged.
Every other node on both write paths goes through
`nodes/project-attrs`, which also selects the projected keys and is the
single place a column-level rule can live. A rule added there reached a
rebuilt page and not a synced one.

AI-assisted-by: mixed models

* 🐛 Let the graph view's query filter follow the graph

"Show result in graph view" froze the set of node ids the query returned
and filtered every later repaint against it. Live sync creates ids the
set has never seen, so a shape created while a filter was on could not
appear in the view at any point, and clicking "Show full graph" was the
only way to see it. A node the query would no longer match stayed.

Keep the query beside the ids and re-run it whenever the graph repaints,
which is only when the projection actually changed. A failed re-run
keeps the ids in hand and says so on the status line rather than passing
a stale view off as current.

`idsInResult` and `presentIds` are extracted from the two places that
scraped UUIDs out of a result.

Verified in the devenv: with a filter showing 108 of 276 nodes, a
`:file-change` adding a Frame published on the session's msgbus topic
took the view to 109 of 277, with the new node carrying its added mark,
and no interaction.

AI-assisted-by: mixed models

* ♻️ Rename app.graph.project to app.graph.projection

`project` is a Penpot noun: a team holds projects and a project holds
files, and the graph will carry a `Project` node table. A namespace
called `app.graph.project.document` therefore reads as "the graph of a
Penpot project" and means the opposite.

`projection` is the word the rest of the subsystem already uses for the
operation: `projection-data`, `load-projection!`, `:projection` in the
ingest report, and `app.graph.schema.projection`.

Pure rename. Both namespaces and every alias move; nothing else changes.

AI-assisted-by: mixed models

* 📎 Apply the project formatter to the graph namespaces

`cljfmt check src/ test/` is a step of the Backend workflow and these two
files did not pass it: an import block sorted the way a human reads it
rather than the way the formatter sorts it, and a `cond` in
`format-typed-value` indented one column short.

Formatter output only. No semantic change.

AI-assisted-by: mixed models

* 📚 Document graph experiment architecture

Add Serena memory coverage for the embedded Ladybug graph subsystem.\nDocument projection, incremental sync, console data flow, tests, and operational risks.\n\nAI-assisted-by: gpt-5.6-luna

---------

Signed-off-by: Álvaro Tejero Cantero <alvorithm@teje.ro>
Co-authored-by: Alejandro Alonso <alejandroalonsofernandez@gmail.com>
Co-authored-by: Andrey Antukh <niwi@niwi.nz>
2026-08-27 18:54:56 +02:00

27 KiB

Graph Experiment

Scope

  • Purpose: project Penpot file data into an embedded Ladybug graph database.
  • Purpose: keep the graph current with Penpot file changes.
  • Purpose: expose a read-only graph console for backend debugging.
  • This is an experiment, not a replacement for PostgreSQL file storage.
  • The graph subsystem is off unless :graph is in the backend flags.
  • The main Penpot frontend has no graph feature code for this subsystem.
  • The graph console is a backend-served HTML template with JavaScript.
  • Read mem:backend/core for backend architecture, HTTP routes, DB rules, and test commands.
  • Read mem:backend/rpc-db-worker-subtleties for RPC and message bus behavior.
  • Read mem:backend/http-storage-filedata-subtleties for file data loading and realization.
  • Read mem:common/changes-architecture for the change record vocabulary.
  • Read mem:frontend/routing-app-shell-subtleties for the existing notification WebSocket.
  • Read mem:prod-infra/core for Redis or Valkey message bus topology.

Branch Surface

  • The graph experiment adds about 6,336 lines and changes about 27 files.
  • The graph implementation lives under backend/src/app/graph/.
  • The graph console lives at backend/resources/app/templates/graph-console.tmpl.
  • The existing debug page gains graph links in backend/resources/app/templates/debug.tmpl.
  • The existing debug HTTP routes gain graph handlers in backend/src/app/http/debug.clj.
  • The backend system passes the message bus to the debug route component in backend/src/app/main.clj.
  • The backend adds Ladybug and Arrow dependencies in backend/deps.edn.
  • The backend adds JVM options for Ladybug and Arrow native access.
  • The common flag registry adds :graph in common/src/app/common/flags.cljc.
  • The graph experiment adds graph_sync_parity_test.clj and graph_binder_gate_test.clj.

System Model

Storage layers

  • PostgreSQL remains the source of truth for Penpot files.
  • The graph database stores a projection of one file.
  • A persistent graph uses a .lbug path under PENPOT_GRAPH_DIR.
  • The default graph directory is /tmp/penpot-graph.
  • A debug session uses a Ladybug :memory: database.
  • A debug session database lives inside the backend JVM process.
  • A debug session does not survive a backend restart.
  • A debug session does not store file data back to PostgreSQL.

Two graph update paths

  • Cold projection reads the complete file and rebuilds the graph.
  • Incremental sync reads file change records and updates the open graph.
  • Both paths must produce the same graph for the same file state.
  • The parity test treats cold projection as the reference path.
  • A reload discards the session graph and uses cold projection again.

Main Namespaces

app.graph.ladybug

  • Opens and closes Ladybug Database and Connection objects.
  • Installs and loads the Ladybug JSON extension.
  • Executes Cypher statements.
  • Executes prepared statements.
  • Binds scalar parameters.
  • Formats UUID, string, integer, number, JSON, and timestamp values.
  • Formats compound values such as arrays, maps, and structs.
  • Converts Ladybug values back to Clojure values.
  • Limits normal query results to 200 rows by default.
  • Detects result truncation with :truncated?.
  • Uses query timeout 0 by default.
  • Query timeout 0 disables the timeout.
  • Provides validate-on-connection! for parse, bind, and read-only checks.
  • exec-prepared-on-connection! prepares every statement before the first execution.
  • A prepare failure stops the batch before a mutation runs.

app.graph.schema

  • Provides the public schema facade.
  • Exposes schema version penpot-graph-slice-4.
  • Delegates node and relationship definitions to app.graph.schema.nodes.

app.graph.schema.nodes

  • Holds the single registry for graph node tables.
  • Generates node DDL.
  • Generates relationship DDL.
  • Maps Penpot shape types to graph tables.
  • Projects source attributes into graph attributes.
  • Formats graph column values.
  • Quotes reserved graph labels such as Group and Boolean.
  • Defines container tables and shape tables.
  • Defines IsChildOf, IsInstanceOf, RefersTo, and FillsSwapSlot.

app.graph.schema.contract

  • Records deliberate graph contract decisions.
  • Renames graph columns such as :revn to revision.
  • Drops attributes that do not belong in this graph slice.
  • Records attributes that the graph does not project.
  • Applies per-table dropped attributes.
  • Defines type overrides for vectors, transforms, colors, maps, and JSON arrays.
  • Maps selected map keys to the frontend JSON naming convention.
  • :background-blur remains a declared unprojected attribute.

app.graph.schema.projection

  • Derives projected schemas from canonical Malli schemas.
  • Builds the projected document schema.
  • Builds projected shape schemas.
  • Selects the schema for each shape type.

app.graph.schema.types

  • Maps Malli types to Ladybug types.
  • Maps matrices to DOUBLE[6].
  • Maps points to DOUBLE[2].
  • Maps rectangles to DOUBLE[4].
  • Maps colors to UINT32.
  • Maps collections to Ladybug arrays.
  • Maps :map-of schemas to MAP.
  • Maps closed scalar maps to STRUCT.
  • Maps other complex values to JSON.

app.graph.schema.values

  • Coerces source values to graph column values.
  • Writes fixed vectors with deterministic order.
  • Packs colors into the graph color representation.
  • Sorts set values when deterministic output is needed.

app.graph.arrow

  • Loads projection rows with Apache Arrow.
  • Creates temporary staged node and relationship tables.
  • Uses COPY ... FROM (MATCH ...) for bulk loading.
  • Groups relationship loads by source and target table pair.
  • Resolves relationship endpoints with joins.
  • Does not use createArrowRelTable for UUID relationship endpoints.
  • Keeps the Arrow RootAllocator alive until Ladybug releases staged buffers.
  • Closes the allocator after the connection and database close sequence.

app.graph.ingest

  • Fetches a complete file with bfc/get-file and :realize? true.
  • Rejects missing files.
  • Rejects files without file data.
  • Can run file data validation before projection.
  • Creates the DDL.
  • Loads nodes and edges through Arrow.
  • Executes post-load transforms.
  • Writes graph metadata last.
  • Treats the final metadata write as the complete-build marker.
  • Supports a persistent database path and an open connection.

app.graph.projection.document

  • Projects Document, Page, Component, and supported shape nodes.
  • Skips the page root frame.
  • Creates IsChildOf edges from shapes to parents.
  • Creates page edges to the document.
  • Creates component edges to the document.
  • Stores page order in Page.index and edge position.
  • Reverses the stored :shapes list for Penpot z-order.
  • Adds page-id to every projected shape.
  • Propagates an instance head component-id to descendants.
  • Stops component inheritance at a non-Frame shape with its own component ID.
  • Skips deleted components during cold projection.
  • Logs unsupported shape types and missing shape records.

app.graph.projection.transforms

  • Runs after the base nodes and edges load.
  • link-component-instances creates IsInstanceOf edges.
  • A Frame needs component-file to qualify as an instance head.
  • link-shape-refs creates RefersTo edges from shape-ref.
  • Ladybug limits multi-label relationship MERGE statements.
  • The transform emits one statement for each shape-table pair.
  • link-swap-slots creates FillsSwapSlot edges.
  • Swap slot IDs come from swap-slot-<uuid> entries in touched.
  • The transform removes swap slot entries from touched after edge creation.
  • The transform order matters because it reads and then changes touched.

app.graph.meta

  • Stores graph provenance in GraphMeta.
  • Stores schema version, source revision, producer, and build time.
  • The source revision identifies the file revision used for cold projection.

app.graph.stats and app.graph.report

  • app.graph.stats counts graph nodes and relationships from the live catalog.
  • app.graph.report prints ingest information for REPL use.

Cold Projection Flow

  1. Get the file row and realized file data from PostgreSQL.
  2. Read the file revision from the file row.
  3. Build the node and edge projection.
  4. Create all graph tables from the graph schema.
  5. Load node rows with Arrow.
  6. Load relationship rows with Arrow.
  7. Run CHECKPOINT;.
  8. Run the registered derived transforms.
  9. Write GraphMeta as the final build step.
  10. Return file ID, file revision, database path, projection stats, and transform stats.

Projection node groups

  • Document contains file-level attributes without the file data blob.
  • Document.options receives file-level options from the data blob.
  • Page contains page attributes without the page object map.
  • Component contains component attributes without component object maps.
  • Shape tables contain the supported shape attributes.
  • The graph stores selected derived attributes such as page-id.

Projection relationship groups

  • Structural edges use IsChildOf.
  • Page and component edges point to Document.
  • Derived edges come from the post-load transform registry.

Incremental Sync

Change source

  • app.rpc.commands.files-update persists the file update first.
  • The same command publishes a :file-change message to the file topic.
  • The topic key is the file UUID.
  • The message contains the file ID, profile ID, session ID, revision, version, and changes.
  • Library changes also publish a team-topic message.
  • The graph session only consumes the file-topic :file-change messages.

Session subscription

  • app.graph.debug/start-sync-loop! creates a channel with a dropping buffer of 64.
  • The session subscribes the channel to the file UUID topic.
  • The loop reads one message at a time.
  • The loop ignores message types other than :file-change.
  • The loop stops when the channel closes.
  • destroy-session! closes the channel and purges its message bus subscription.

Session state

  • Sessions are stored in a global defonce atom.
  • The map key is the string form of profile-id.
  • One profile has one graph session.
  • Loading another file first destroys the old session.
  • A session stores the Ladybug database and connection.
  • A session stores a shared lock for graph access.
  • A session stores file metadata.
  • A session stores the incremental sync index.
  • A session stores the message bus channel.
  • A session stores load time and profile ID.
  • The session keeps projection statistics but drops full projection rows after index creation.

Sync index

  • build-index starts from the complete cold projection.
  • The index stores the graph file ID and document ID.
  • The index stores the current graph revision.
  • The index stores page IDs, names, and positions.
  • The index stores component IDs, names, and deleted state.
  • The index stores shape table, parent, position, frame, page, and component context.
  • The index stores child IDs by parent ID.
  • The index supports later change application without another PostgreSQL file read.

Change application

  • apply-changes! processes the change list in source order.
  • Each supported change returns a new index and a list of Cypher statements.
  • Unsupported changes enter the :skipped result.
  • Supported changes enter the :applied result.
  • The function collects all statements before it executes them.
  • The function appends a document revision statement when at least one change applies.
  • The index revision advances only when at least one change applies.
  • A larger incoming revision than the index revision creates a warning.
  • A revision gap does not trigger catch-up.

Shape change rules

  • :add-obj reuses projection.document/denormalized-shape.
  • :add-obj creates the shape node and its parent edge.
  • :mod-obj applies supported :set operations to graph columns.
  • :mod-obj keeps false and zero values as values.
  • :del-obj deletes shapes in deep post-order.
  • :mov-objects detaches shapes from the old parent.
  • :mov-objects closes the old sibling position gap.
  • :mov-objects inserts shapes at the new position.
  • :mov-objects updates parent_id and frame_id.
  • :mov-objects rewrites container shapes values.
  • The parent columns and child lists must match a cold projection.

Page and component change rules

  • Page add creates a projected page node and a document edge.
  • Page delete removes the page subtree.
  • Page modification updates supported page attributes.
  • Component add creates a component node and document edge.
  • Component modification updates supported component attributes.
  • Component delete uses a soft-delete state.
  • Component restore removes the soft-delete state.
  • Component purge removes the component node and document edge.
  • Component sync paths need more parity coverage than the current tests provide.

Session Locking

  • The sync loop and HTTP handlers share one lock per session.
  • The lock protects one Ladybug connection from concurrent access.
  • Queries acquire the lock before binder validation and execution.
  • Graph data export acquires the lock before catalog reads.
  • Session export acquires the lock before EXPORT DATABASE.
  • A long query blocks sync for the same session.
  • A sync batch blocks queries for the same session.
  • Ladybug connection thread safety is not assumed.

Graph Query Rules

  • The console accepts Cypher text.
  • Blank query text raises a validation error.
  • The query first passes Ladybug prepare and bind checks.
  • The query must pass the engine read-only analysis.
  • A mutating query is rejected.
  • The graph console does not provide a write path.
  • A session graph is rebuilt from the file by Reload.
  • Normal query results have a 200-row limit.
  • Query results use string values for the HTML console representation.
  • JSON requests receive a Transit JSON response with the query and result.
  • HTML requests receive the rendered console with the result.

Graph Data Export

G6 data

  • /dbg/actions/graph-data reads the live Ladybug database.
  • It does not read the sync index for nodes and edges.
  • It therefore shows database drift if a batch fails after index update.
  • Node export covers all registered node tables.
  • Relationship export reads the Ladybug relationship catalog.
  • Relationship export includes source, target, relationship name, and position.
  • Node and relationship export uses a 100,000-row limit.
  • The response reports truncated when a limit cuts the result.
  • The response reports buffer-manager memory usage.

.lbug export

  • source=file rebuilds the persistent graph from PostgreSQL file data.
  • source=file runs a synchronous full ingest for each request.
  • source=session exports the caller profile's live in-memory graph.
  • Session export uses Ladybug EXPORT DATABASE to Parquet files.
  • Session export creates a new .lbug database with IMPORT DATABASE.
  • The temporary Parquet staging directory is deleted after import.
  • The final session .lbug file remains in the system temporary directory.
  • The HTTP response streams the database file to the caller.

HTTP Routes and Access

  • The graph routes live in backend/src/app/http/debug.clj.
  • The graph route list is added only when :graph is enabled.
  • /dbg/graph serves the graph console page.
  • /dbg/actions/graph-files returns the profile file tree.
  • /dbg/actions/graph-load loads a file into the profile session.
  • /dbg/actions/graph-unload closes the profile session.
  • /dbg/actions/graph-reload rebuilds the loaded file graph.
  • /dbg/actions/graph-query runs a read-only Cypher query.
  • /dbg/actions/graph-sync-status returns the sync state.
  • /dbg/actions/graph-data returns nodes and edges for G6.
  • /dbg/actions/graph-export streams a .lbug database.
  • The /dbg session middleware remains active.
  • The /dbg admin middleware remains active.
  • A devenv host with a profile ID passes the debug authorization rule.
  • Other hosts need a profile email in the configured admin set.
  • /dbg/actions/graph-files lists reachable teams, projects, and files.
  • The file tree query has a 500-file limit.
  • The graph handlers resolve graph namespaces at call time.
  • The backend requires app.graph.debug and app.graph.ingest when the flag is on.
  • Ladybug native loading then fails during route initialization instead of first use.

Console Frontend

Page type

  • graph-console.tmpl is a backend resource template.
  • It is not a Rumext component.
  • It is not part of the main frontend route table.
  • The page uses browser fetch calls and a browser WebSocket.
  • The page loads G6 version 5.1.1 from jsDelivr.

File tree

  • The page fetches /dbg/actions/graph-files.
  • The response contains team, project, and file groups.
  • The page creates the tree with DOM APIs.
  • A file click submits the graph load form.
  • The page shows a message when no file exists.

Graph rendering

  • The page fetches /dbg/actions/graph-data.
  • The page converts graph nodes and edges to G6 data.
  • The page skips repaint when the node and edge signature does not change.
  • The page marks added, removed, and changed graph entities.
  • The page supports tree, dagre, circular, force, and combo layouts.
  • The page supports collapsed container combos.
  • The page has render guards at 4,000 nodes and 8,000 edges.
  • The ?safe query option bypasses the render guard.
  • The page shows graph size by node count and relationship count.
  • The page shows buffer-manager memory in MiB.
  • The page reports a CDN failure when G6 is undefined.

Query result filtering

  • A query can return filter_* columns with node IDs.
  • The HTML result table hides columns with the filter_ prefix.
  • The JSON result keeps the full result.
  • The graph view uses the hidden IDs to select matching nodes.
  • The graph view re-runs the query after graph refresh.
  • This keeps the query filter aligned with the current graph.
  • A user column named filter_* follows the same hiding rule.

Node inspector

  • A node click creates a query for that node.
  • The inspector calls /dbg/actions/graph-query with JSON negotiation.
  • The inspector displays the full projected row.
  • The inspector uses table and ID values from the graph data.

WebSocket Data Flow

  1. The page opens /ws/notifications with a random session-id query value.
  2. The page sends :subscribe-file with a Transit UUID value.
  3. The server makes sure that the file exists and that the profile has read permission.
  4. The server subscribes the connection to the file topic.
  5. files_update publishes :file-change to the same topic.
  6. The graph session consumes the message from its message bus subscription.
  7. The WebSocket server sends the message to the browser connection.
  8. The browser adds the change to the changelog.
  9. The browser fetches sync status after 150 milliseconds.
  10. The browser fetches graph data after a 400-millisecond debounce.
  11. The browser repaints the G6 graph when the graph data changes.

WebSocket reconnect behavior

  • The page reconnects after three seconds when the socket closes.
  • The page resubscribes to the file after the socket opens.
  • The page refreshes sync status after reconnect.
  • The page refreshes graph data after reconnect.
  • Reconnect does not recover dropped message-bus changes.
  • The page shows the sync error or skipped-change state when the status reports it.

Feature Flag and Runtime Dependencies

  • :graph is defined in common/src/app/common/flags.cljc.
  • The flag is off by default.
  • com.ladybugdb/lbug version 0.19.1 is a backend dependency.
  • org.apache.arrow/arrow-memory-netty version 18.2.0 supports Arrow RootAllocator.
  • The JVM uses --enable-native-access=ALL-UNNAMED.
  • The JVM uses --add-opens=java.base/java.nio=ALL-UNNAMED.
  • The JVM uses --sun-misc-unsafe-memory-access=allow.
  • The JVM options appear in the development alias and backend launch scripts.
  • A Ladybug version change needs new binder and parity tests.
  • A JDK version change needs a startup test with the graph flag enabled.

Tests

backend-tests.graph-sync-parity-test

  • Uses two Ladybug :memory: databases.
  • Does not use PostgreSQL or a live graph session.
  • Projects initial file data into database A.
  • Applies changes to database A through incremental sync.
  • Applies the same changes to file data.
  • Projects the changed file data into database B.
  • Compares every node row and relationship row.
  • Reports differences by table, row key, and column.
  • Covers shape add, shape modification, shape deletion, movement, and page changes.
  • Contains a test that injects a sync defect and expects a graph difference.
  • Does not cover all component change variants.
  • Does not cover every movement insertion mode.

backend-tests.graph-binder-gate-test

  • Creates the live graph DDL in a Ladybug :memory: database.
  • Prepares each sync statement template without executing it.
  • Detects parse errors and missing tables.
  • Detects missing columns and bad label quoting.
  • Reports the expected read-only classification.
  • Covers reserved node labels across the node registry.
  • Reports an error result for an invalid statement.

Test gaps

  • No automated HTTP handler tests cover graph routes.
  • No automated session lifecycle tests cover load and unload.
  • No automated WebSocket tests cover graph subscription.
  • No automated export tests cover persistent and session sources.
  • Component add, modify, delete, restore, and purge need parity tests.
  • Page delete needs parity coverage.
  • Movement with :after-shape needs parity coverage.
  • Buffer overflow and revision gap behavior need tests.
  • Partial batch failure and recovery need tests.
  • Query timeout and long-query behavior need tests.

Known Risks and Limits

Dropped changes

  • The sync channel uses a dropping buffer of 64.
  • A burst can discard file-change messages.
  • The sync loop logs a revision gap when it sees a larger revision.
  • The sync loop does not fetch missing rows from file_change.
  • Reload is the only built-in recovery path.

Partial batch state

  • apply-changes! does not provide Ladybug transaction atomicity.
  • A statement failure can leave a partly changed graph.
  • The in-memory index can advance before the database state is complete.
  • /dbg/actions/graph-data reads the database and exposes this drift.
  • Reload rebuilds the graph from PostgreSQL file data.

Query resource use

  • The default session query timeout is zero.
  • A costly query can hold the session lock for a long time.
  • The same lock blocks incremental sync.
  • The graph export also holds the same lock during catalog reads.
  • The graph schema has a high memory floor.
  • The console reports about 115 MiB for the wide slice before file data.

Session lifecycle

  • Sessions have no TTL.
  • Sessions remain until unload, replacement, or process shutdown.
  • Each session owns native Ladybug memory.
  • Many profiles can create many native databases.
  • A profile load replaces its previous session.
  • Two browser tabs for one profile share one graph session.

Temporary files

  • Session export leaves the final .lbug file in the system temporary directory.
  • Long-lived servers can accumulate exported session databases.
  • The staging directory is deleted after import.

Browser dependency

  • The graph view depends on a runtime CDN request.
  • A network restriction can remove the G6 view.
  • Queries and session status still use backend endpoints without G6.

Data exposure

  • The graph console can list many files available to the profile.
  • The console can load complete projected file data.
  • The console can export a graph database.
  • The console can inspect all projected node attributes.
  • The console is safe only when the /dbg access boundary is correct.
  • The graph flag must remain off for deployments that do not need this tool.

Contract drift

  • The graph schema is a deliberate slice of the Penpot file model.
  • New source attributes do not enter the graph automatically in all cases.
  • Dropped and unprojected attributes need an explicit contract decision.
  • applied_tokens key mapping depends on the JSON naming function.
  • filter_* is a frontend convention, not a graph schema guarantee.

Ladybug dialect coupling

  • Cypher strings contain Ladybug-specific syntax.
  • Label quoting handles reserved labels explicitly.
  • Relationship transforms depend on Ladybug relationship limits.
  • Arrow loading depends on Ladybug COPY FROM (MATCH ...) behavior.
  • A dependency upgrade needs schema, binder, Arrow, and parity checks.

REPL Helpers

  • app.srepl.main resolves graph functions only when a helper runs.
  • graph-smoke-test! runs a basic Ladybug operation.
  • graph-query-test! runs a graph query test.
  • ingest-file-to-graph! projects a file into a graph database.
  • These helpers use requiring-resolve to keep the graph dependency lazy.

Operational Invariants

  • PostgreSQL file data remains authoritative.
  • Cold projection and incremental sync must produce equal graph state.
  • The graph revision must identify the last applied file revision.
  • The document revision must update when a sync batch applies.
  • A missing or skipped change must remain visible in sync status.
  • A graph query from the console must be read-only.
  • A graph session must serialize connection access.
  • Graph routes must remain behind the :graph flag and /dbg access control.
  • The Arrow allocator must outlive all Ladybug operations that use its buffers.
  • GraphMeta must be written after the full ingest and transforms finish.

Key Files

  • backend/src/app/graph/ladybug.clj: Ladybug API and query gates.
  • backend/src/app/graph/arrow.clj: Arrow bulk load.
  • backend/src/app/graph/ingest.clj: Complete file ingest.
  • backend/src/app/graph/debug.clj: Session lifecycle, sync loop, query, and export.
  • backend/src/app/graph/sync.clj: Incremental change application.
  • backend/src/app/graph/meta.clj: Graph provenance.
  • backend/src/app/graph/stats.clj: Graph counts.
  • backend/src/app/graph/report.clj: REPL ingest report.
  • backend/src/app/graph/projection/document.clj: Base document projection.
  • backend/src/app/graph/projection/transforms.clj: Derived relationship transforms.
  • backend/src/app/graph/schema/nodes.clj: Node and relationship registry.
  • backend/src/app/graph/schema/contract.clj: Projection contract decisions.
  • backend/src/app/graph/schema/projection.clj: Malli projection schemas.
  • backend/src/app/graph/schema/types.clj: Malli-to-Ladybug type mapping.
  • backend/src/app/graph/schema/values.clj: Value coercion.
  • backend/src/app/http/debug.clj: Graph route registration and handlers.
  • backend/src/app/http/websocket.clj: File WebSocket subscription handlers.
  • backend/src/app/rpc/commands/files_update.clj: File-change publication.
  • backend/src/app/main.clj: Integrant message bus wiring.
  • backend/resources/app/templates/graph-console.tmpl: Graph console browser code.
  • backend/resources/app/templates/debug.tmpl: Debug page graph links.
  • common/src/app/common/flags.cljc: :graph feature flag.
  • backend/test/backend_tests/graph_sync_parity_test.clj: Cold versus sync parity.
  • backend/test/backend_tests/graph_binder_gate_test.clj: Cypher binder gate.

Development Commands

  • Run backend commands from the backend/ directory.
  • Run focused parity tests with clojure -M:dev:test --focus backend-tests.graph-sync-parity-test.
  • Run focused binder tests with clojure -M:dev:test --focus backend-tests.graph-binder-gate-test.
  • Run the backend test suite with clojure -M:dev:test.
  • Examine Clojure formatting with pnpm run check-fmt:clj.
  • Run backend Clojure lint with pnpm run lint:clj.
  • Write test output to a file before reading or filtering it.