# structurizr-neo4j **Repository Path**: beyond-prototype/structurizr-neo4j ## Basic Information - **Project Name**: structurizr-neo4j - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-24 - **Last Updated**: 2024-12-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Neo4j Desktop https://neo4j.com/download-thanks-desktop/?edition=desktop&flavour=osx&release=1.5.9&offline=false ## Neo4j Desktop for Windows https://neo4j.com/artifact.php?name=neo4j-desktop-1.5.9-setup.exe ## Neo4j Desktop for Mac OS https://neo4j.com/artifact.php?name=neo4j-desktop-1.5.9.dmg ## Neo4j browser https://github.com/neo4j/neo4j-browser https://github.com/neo4j/neo4j-browser/releases/tag/5.15.0 ## Spring AI https://spring.io/projects/spring-ai https://docs.spring.io/spring-ai/reference/1.0-SNAPSHOT/index.html https://docs.spring.io/spring-ai/reference/1.0-SNAPSHOT/api/embeddings/mistralai-embeddings.html https://docs.spring.io/spring-ai/reference/1.0-SNAPSHOT/api/chat/mistralai-chat.html https://docs.spring.io/spring-ai/reference/1.0-SNAPSHOT/api/vectordbs/neo4j.html ### Neo4j Cypher Show Vector INDEXES ```sql SHOW INDEXES YIELD name, type, entityType, labelsOrTypes, properties, options WHERE type = 'VECTOR' RETURN name, entityType, labelsOrTypes, properties, options ``` ![show_indexes](images/show_indexes.png) Show SoftwareSystem Nodes ```sql MATCH (n:Element) where n.type = 'SoftwareSystem' RETURN n LIMIT 25 ``` ![show_software_systems](images/show_software_systems.png)