Skip to content

Latest commit

 

History

History
63 lines (37 loc) · 1.23 KB

README.md

File metadata and controls

63 lines (37 loc) · 1.23 KB

Neo4S

Neo4S is an Neo ORM for Scala it uses the AnormCypher ibrary

Use Example:

build.sbt

resolvers ++= Seq(
  "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)

libraryDependencies ++= {
  Seq(
    "com.kreattiewe" %% "neo4s" % "1.4.0"  
    )
}

Examples

Checkout how to use it on the tests directory here

#Version

1.4.0

  • One label per node
  • Added utilities to create and drop indexes

1.3.2

  • Fixed execution context in the DAO and Query methods

1.3.1

  • Added Mapper companion object to create Mapper[T] here

1.3.0

  • Simplified types for the Main classes NodeDAO, RelDAO, NeoQuery
  • Check how to define the models and the DAOs here

1.2.1

  • Dependency changes

1.2.0

  • Improved support for optional values

1.1

  • Added support for Optional values
  • Changes in setting parameters for updating nodes and rels

1.0

  • CRUD For Nodes
  • CRUD For Relationships