Releases: neo4j-contrib/neo4j-faker
For Neo4j version 4 and 5
maintenance
Small maintenance release.
maintenance, fix for windows
- Fixed an error in determining the plugins directory when used in a windows environment
- updated dependencies
For neo4j version 4 and higher
This version supports (needs) neo4j version 4+.
You can specify now a dbname url parameter for the datagenerator unmanaged extension.
example:
curl -g http://localhost:7474/testdata/tdg/pfile/tdgexample.props?dbname=mydb
The functions and procedures are working as before.
See installation notes by the previous releases.
Added fkr.createRelations
With this version it is possible to generate relationships between two list of nodes for a given cardinality.
For installation instructions see the 0.9-beta release
first release
Unzip the distribution zip file into a directory
- Copy all the contents of the dist directory to the neo4j server plugin directory
-
Faker Cypher Functions
-
Add the following line in the noo4j.conf file to allow access to the faker functions.
dbms.security.procedures.unrestricted=fkr.*
-
-
Data Generator Only
-
Register the Data Generator Unmanaged Plugin on the neo4j server. You have to add the following line to your neo4j.conf file
dbms.unmanaged_extension_classes=org.neo4j.faker.ump=/testdata
-
For convenience you can disable the authentication.
dbms.security.authorization_enabled=false
-
-
- (re) Start the neo4j server
- Data Generator Only
-
Test the plugin
-
Test the availability of the plugin by calling it with a non existing property file name from you local browser
http://127.0.0.1:7474/testdata/tdg/pfile/test.props
The browser will now give an error message stating that the file test.props cannot be found.
-
- Data Generator Only