Skip to content

Releases: neo4j-contrib/neo4j-faker

For Neo4j version 4 and 5

23 Nov 14:05
Compare
Choose a tag to compare
  • Maintenance
  • Removed obsolete dependencies
  • Neo4j version 5 support

maintenance

15 Sep 05:57
Compare
Choose a tag to compare

Small maintenance release.

maintenance, fix for windows

30 Aug 10:48
Compare
Choose a tag to compare
  • Fixed an error in determining the plugins directory when used in a windows environment
  • updated dependencies

For neo4j version 4 and higher

26 Mar 11:13
Compare
Choose a tag to compare

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

12 Jun 15:07
Compare
Choose a tag to compare

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

09 Jun 10:25
Compare
Choose a tag to compare

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.