gremlin-scala icon indicating copy to clipboard operation
gremlin-scala copied to clipboard

Scala wrapper for Apache TinkerPop 3 Graph DSL

Results 33 gremlin-scala issues
Sort by recently updated
recently updated
newest added

Here's a snippet of my code ``` @label("trip") case class TripModel(tripId: Option[String] = None, name: String, createdDate: Date = new Date(), startDate: Date, duration: Int, totalAdults: Int, totalChildrens: Int, @underlying...

Hi, Thanks for building this nice wrapper for Scala :D. I am currently use this on a Remote JanusGraph by calling: `val scalaGraph: ScalaGraph = EmptyGraph.instance().asScala().configure(_.withRemote(DriverRemoteConnection.using(cluster, "g")))` but found I...

I've added this issue to track a discussion related to adding Edge support to the DSL. I'm happy to push up a PR, but I'd like to make sure it's...

I have an issue with the field annotated with `@id`. If the case class declaration goes after the class that calls `toCC`, the `id` field is not filled in. If...

Here is the source code: ``` // create graphson object and dump it to the file graphson.txt val g = TinkerGraph.open() val gScala = g.asScala val v = gScala.addVertex("Node", ("ip",...

I had to implement a vertex query containing an or-Condition and just from reading the documentation it was not obvious for me how the logical operators .or(...) and .and(...) work....

Here's a cut at adding by modulation for select steps. Please take a look at the SelectSpec for usage of the tupled version. It accepts a tuple of StepLabel, followed...

With an embedded graph DB, if we attempt code like: ``` graph.V.promise(_.toList) >> java.lang.IllegalStateException: Only traversals created using withRemote() can be used in an async way ``` I'm note sure...

valueMap does not preserve multi-properties, the conversion to map only keeps a single value per key. I think valuemap should return List[A] Current implementation: ``` def valueMap[A: DefaultsToAny]: Map[String, A]...

I'm working on my SaaS startup on top of Apache Spark, but want to use a graph database for metadata management. I've spent 2 days trying to figure out how...