-
Notifications
You must be signed in to change notification settings - Fork 8
Extension and Plugins
Link edited this page Apr 25, 2024
·
17 revisions
Getting started with Blueprint41 we can install optional plugins for Neo4j.
-
APOC (Awesome Procedures On Cypher) - To use older Neo4j versions, Blueprint41 needs APOC. See APOC: An Introduction to User-Defined Procedures and APOC.
-
Blueprint41 Plugin - contains Blueprint41 neo4j procedures (e.g auto-increment features of the Functional ID)
- Download Blueprint41 plugin for Neo4j v5, Neo4j v4 or Neo4j v3.
- Download APOC plugin for Neo4j v5 or look at the older versions.
- After you've downloaded the plugins, stop the neo4j service.
- Put the plugins (jar-file) into your
<neo4j-home>\pluginsfolder (e.gC:\neo4j\plugins). - Start the neo4j service.
Important
When using Neo4j 3.2 and above, security for procedures and functions has increased. To allow procedures, edit the configuration file <neo4j-home>\conf\neo4j.conf with dbms.security.procedures.unrestricted=apoc.*,blueprint41.*. See Neo4j APOC Procedures.
If you are using Memgraph you need to add the following configuration:
--storage-enable-schema-metadata=true
- The Blueprint41 visual studio extension contains a project template that helps to organized your projects and items in your solution.
- The project template will create "{ProjectName}.Generated" and "{ProjectName}.Model" projects.
-
"{ProjectName}.Model" project will contain your datastore model definition (
Datastore.cs). - "{ProjectName}.Generated" project will contain all the generated type-safe models based on the datastore model definition in the "{ProjectName}.Model" project.
- "{ProjectName}" project is a console application that uses Neo4j or Memgraph driver.
You can download Blueprint41 visual studio extension here.
- Installing Blueprint41 visual studio extension.

- Updating configuration for Visual Studio.

- Installation Complete.
