Skip to content
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.

Releases: microsoft/spring-data-gremlin

Spring Data Gremlin 2.1.1

08 Mar 01:15
cb1fe95
Compare
Choose a tag to compare
Update master version to 2.1.1. (#208)

Signed-off-by: Pan Li <panli@microsoft.com>

Spring Data Gremlin 2.0.1

08 Mar 01:16
3d67b92
Compare
Choose a tag to compare
Update 2.0.x version to 2.0.1. (#212)

Signed-off-by: Pan Li <panli@microsoft.com>

Spring Data Gremlin 2.1.0

19 Dec 02:01
16a2f6e
Compare
Choose a tag to compare
Upgrade version to 2.1.0, #188. (#193)

Signed-off-by: Pan Li <panli@microsoft.com>

Spring Data Gremlin 2.0.1.M1

09 Nov 12:10
Compare
Choose a tag to compare
Pre-release
  • Add sslEnabled configuaration for gremlin server
  • Add serializer configuration for gremlin server
  • Add new annotation @GeneratedValue act on @Id field.
  • Refactor package configuration
  • Some bug fix and defect enhancement.
  • Update sample code.

Thanks @brunoborges @fabiencoppens @jwalter @kschulst for contribution!

Spring Data Gremlin 2.0.0

15 Jun 02:41
Compare
Choose a tag to compare

Feature List

  • Spring Data CRUDRepository basic CRUD functionality
    • save
    • findAll
    • findById
    • deleteAll
    • deleteById
  • Spring Data @Id annotation, works on both String and Integer.
  • Default annotaion
    • @Vertex maps an Object to a Vertex
    • @VertexSet maps a set of Vertex
    • @Edge maps an Object to an Edge
    • @EdgeSet maps to a set of Edge
    • @EdgeFrom maps to the head Vertex of an Edge
    • @EdgeTo maps to the tail Vertex of an Edge
    • @Graph maps to an Object to a Graph
  • Supports graph database operations
    • <T> T findVertexById(Object id, Class<T> domainClass);
    • <T> T findEdgeById(Object id, Class<T> domainClass);
    • <T> boolean isEmptyGraph(T object)
    • long vertexCount()
    • long edgeCount()
  • Supports Spring Data custom query, AND/OR/AFTER/BEFORE/EXISTS.
  • Supports any class type in domain class including collection and nested type.
  • Supports Spring Data REST.