Can't do explain() traversal step using Gremlin-Python ..
g
, but as mentioned on twitch, I'm unable to add an explain() step to one of my first traversals.
i start with g
a connected graphTraversalSource
and perform the following
```groovy
vertex = g.add_v("my_vertex").next()
vertex = (...Gremlin Query for amount of time and return all results?
How do I make a ssl connection using only ARN from neptune (AWS)
Can gremlin-server be started via its Java package
Getting Property Out of a Variable in Python Gremlin Query
The Cascading Coalescing - Create a V then Create an E in One Shot
mergeV/E()
should be the best approach for upsert that we have right now and should cover most coalesce()
patterns that people do.
```groovy
g.mergeV([name:'manabububu']).as('v') // gets or creates a vertex with name="manubububu"
property('x', 1) // adds x=1 irrespective of whether the vertex is created or not
mergeE([(label):'link',(from):outV,(to): 'dac4de07-1371-a1f7-7409-ad28d75069a5'). // find edge from "v" to a vertex with the uuid specified...Toolset
Gremlin query has strange behavior with range() and limit()
User-Agent Metric Not Exposed in Gremlin Server - Need Help Troubleshooting
Gremlin Syntax Highlighter
neo4j-gremlin plugin support
Is it possible to apply `by` modulator to not last step?
TheCrew
graph.
I'm trying to get 2 properties and unfold values only for second one, query is like
g.V().valueMap("location", "name").by(__.unfold()).by()
but property order after valueMap
can be random, so I added sorting to get expected result
g.V().valueMap("location", "name").order(local).by(keys)
...Complete Instruction Set?
Best Testing Practices?
Route from origin to destination between two datetimes
migrating from Azure Cosmos DB Gremlin to another Gremlin platform such as Google BigTable
What does Setting Write Buffer Watermark do?
How can I filter by property type
Deleting X nodes when there is no incoming Y nodes to them
team
has many Member
and each member works only for one company. a company can also works for another company.
I want to delete all companies that no member of team works for them. In the following example company W and Z must be deleted but company Y should not. because member A works for X and X works for Y....User Defined Steps for orientDB Handlers (Server Plugins)
union
in Gremlin. In OrientDB, I can write my own function called customUnion
using the handlers.
Question: How can I call the custom function of OrientDB (or step of Gremlin) in the Gremlin console? Also, I am using the Gremlin Java API, so I need to call the custom function customUnion
in Gremlin Java API.
I have created the same question on OrientDB: https://github.com/orientechnologies/orientdb/issues/10003...