mirror of
https://github.com/reconurge/flowsint.git
synced 2026-04-27 10:58:07 -05:00
-
released this
2026-01-25 08:30:57 -06:00 | 128 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 14:32:55 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 14:30:57 GMT- usage of a new format of GraphNode to manipulate in front and back:
⚠️ Make sure you run
make migrate-prodif you want to keep your existing neo4j data (ormake migrate-devin dev mode) after pulling those changes, so that the migration can parse those in the right format.export type GraphNode = { id: string nodeType: string nodeLabel: string nodeProperties: NodeProperties // Domain, Ip, Individual... nodeSize: number nodeColor: string | null nodeIcon: keyof typeof LucideIcons | null nodeImage: string | null nodeFlag: flagColor | null nodeShape: NodeShape // circle, hexagonal, square, triangle nodeMetadata: NodeMetadata x: number y: number val?: number neighbors?: any[] links?: any[] }And proper way to store them in neo4j.
- proper way and usage of
GraphService,GraphRepositoryandGraphSerializer. Previous implementation was shady.
What's Changed
- feat: big codebase refactor + new node display features by @dextmorgn in https://github.com/reconurge/flowsint/pull/111
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.1.0...v1.2.0
Downloads