Cypher neo4j export - #110
Open
odungern wants to merge 15 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds Cypher-based export capabilities: a Cypher file export plugin plus a direct-to-Neo4j export plugin that posts generated Cypher statements to Neo4j’s HTTP transaction endpoint, backed by a new shared getCypher() generator.
Changes:
- Introduces a Cypher export UI that writes combined package Cypher to a
.cypherfile. - Introduces a Neo4j export UI + HTTP exporter that splits/schema-orders Cypher statements and sends them to Neo4j.
- Adds
src/common/export/cypher/getCypher.tsto generate Neo4j-oriented Cypher from CASCaRA items/packages.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
| src/plugins/export/neo4j/README.md | Documents the Neo4j export plugin and usage. |
| src/plugins/export/neo4j/neo4j-export.ts | Implements the HTTP-based Neo4j export helper and Cypher statement splitting. |
| src/plugins/export/neo4j/mount-export-neo4j.ts | Registers the Neo4j export component as a Vue plugin. |
| src/plugins/export/neo4j/export-neo4j.vue | Adds the Neo4j export dialog UI and wiring to the exporter. |
| src/plugins/export/cypher/README.md | Documents the Cypher file export plugin and usage. |
| src/plugins/export/cypher/mount-export-cypher.ts | Registers the Cypher export component as a Vue plugin. |
| src/plugins/export/cypher/export-cypher.vue | Adds the Cypher export dialog UI and file-write flow. |
| src/common/export/cypher/getCypher.ts | Adds Cypher generation logic for packages/items, constraints, nodes, and relationships. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
... add export to neo4j via Cypher file and API.