mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-16 00:52:35 -05:00
[GH-ISSUE #177] Add JSON export for selected graph nodes #3643
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @fuleinist on GitHub (Jun 5, 2026).
Original GitHub issue: https://github.com/reconurge/flowsint/issues/177
Problem
When an investigator finishes a session in Flowsint, there is no built-in way to export the selected nodes and edges as a machine-readable file. Exporting is needed for reporting, backup, or feeding data into external tools.
Proposed Solution
Add a right-click context menu option on selected graph nodes (or a toolbar button) that exports the selected nodes + their edges as a JSON file:
{
"exported_at": "2026-06-05T14:00:00Z",
"nodes": [...],
"edges": [...]
}
This is a small surface-area addition — it reads the already-loaded graph selection and serialises it. No new data model needed.
Use Case