Gremlin is a graph traversal language.
1
vote
1answer
35 views
Return JSONObject from server plugin in neo4j
I am attempting to create a server plugin in neo4j to make a specific query and wish to return, not one iterable, but two iterables of Node.
I saw that this is not possible according to the neo4j ...
0
votes
0answers
17 views
NoAvailableHostsException while starting Titan with Cassandra
I have configured Cassandra-1.2.2 in cluster mode. But while starting Titan with my cassandra configuration, it Showing the following exception
Exception in thread "main" ...
0
votes
2answers
50 views
Gremlin loop traversal through various edges directions
I have the graph (see the picture below). I go with gremlin from A and need to loop all the tree up following the edges "impacts" and "similarTo".
So I need something like:
g.v(A.id).out('impacts', ...
0
votes
1answer
34 views
How to import a GraphML DB in embedded Neo4J with Java?
Is it possible to import a database as GraphML XML-File in embedded Neo4j with Java?
I tried to run the following script but without any success:
g.loadGraphML('graphMlFileLocation')
I'm unable to ...
0
votes
0answers
50 views
Setting up Titan and Cassandra - Could not instantiate storage manager class
I've set up cassandra server (Datastax community edition) and it's running fine.
My cassandra.yaml has the following settings:
seeds: "127.0.0.1"
storage_port: 7000
rpc_port: 9160
When I do this ...
0
votes
2answers
29 views
How can I search for a vertex and create edge in a single query?
I am using gremlin query to search for vertices from a given vertex.
v.both("edgeLabel").has("propertykey", "27826345");
This query is returning a bunch of vertices. Now I am creating edges from ...
0
votes
1answer
49 views
Proper way of starting a Titan graph server and connect with gremlin
Eventhough I'm quite new to thinkaurelius/titan, I've been playing with it for a while now. And my feeling is that, despite an extensive documentation, there is a lack of Getting started from scratch ...
0
votes
1answer
19 views
Gremlin-Traversing Find all vertex not related to a specific vertex
This is the scenario: I have a number of users vertex in a orient-db.
I want to retrieve all users that are NOT friend of a specific user where friend are an edge.
I need the gremlin command to that.
...
0
votes
1answer
45 views
Using titan graph db with c# and gremlin
That was so hard to install it. I want to use Berkeley + Elastic Search configuration.
I dont know it is production ready. Rexter seems good communication Layer. I can start titan server (?) via ...
0
votes
1answer
37 views
Gremlin query like SQL IN operator?
Im stuck with gremlin. I have emails like array and I need to make query to find all user with those emails.
In SQL I have
SELECT email(s)
FROM user
WHERE email IN (xxx, yyy...)
How can I do ...
1
vote
1answer
65 views
How can I get Vertices with relations and related Vertices in Neo4j 1.9RC1 via Gremlin
Neo4j will support tree pattern in 2.x versions.(We could not use tree function) We are using 1.9RC1.
I need to get Users with Followers and Friends.
public class User
{
public long Id { get; ...
0
votes
2answers
60 views
Finding the path between two vertices in Neo4j using Gremlin
I'm trying to find in a Neo4j database a path in between two vertices, assuming I have code that look like this
newschool = g.addVerttex();
newschool.Title = 'A nice school';
newuser = ...
1
vote
2answers
70 views
Find a node rank using gremlin
I have nodes in Neo4j with multiple relationships , like follows, country, region etc. But I want to calculate pagerank/node rank for only nodes with relationship Follows . Is there any tutorial to do ...
0
votes
0answers
36 views
JUNG Pagerank edge weight issue
I am new to Gremlin and I am trying to implement the pagerank algorithm with edge weights from JUNG. These are the steps I have taken. I have 2.0.0.0 version of Gremlin installed. I have created a ...
0
votes
0answers
11 views
Can someone please share an example for using EdgeWeightTransformer in gremlin using JUNG algorithms for pagerank?
I have seen the example for using EdgeLabelTransformer at the following link:
https://github.com/tinkerpop/gremlin/wiki/Using-JUNG
0
votes
1answer
59 views
Neo4j ResultSet Object - how to get data if result is an array
I have one gremlin query in which I used cap().next()
and Everyman\Neo4j\Query\ResultSet Object is
...
[data:protected] => Array
(
[v[1079]] => Array
(
...
0
votes
2answers
117 views
get all nodes and relationships properties within closed circle
Lets asume that John is selling goods to Met , Met is selling goods To both Bob and Alen ,
and Alen sells goods to John again .
What I need is a Cypher query that returns all the closed circles like ...
0
votes
2answers
67 views
Can't make the pattern matching with a single gremlin statement
I have a graph with dependencies:
dep1 -> dep2 -> ... -> dep3 -> ...
| ^
+-> dep4 |
| |
+-------------------+
I'm ...
0
votes
1answer
70 views
extract map from vertex and return an array of maps via REST-API
I am trying to put all properties of a vertex in a map and add additional values to this map. Later, I want to return this map as a JSON response. In general I find the REST-API of neo4j a bit verbose ...
0
votes
2answers
50 views
How to print out Gremlin pipe / traversal results
I have the code below in a file named traversal.groovy (which I call from the command line with gremlin -e traversal.groovy):
// Begin traversal.groovy //
g = ...
0
votes
3answers
64 views
GMongo instance undefined from gremlin shell in neo4j
I am trying to load the data from mongodb database from the Gremlin shell in neo4j in order to create a graph databse from it. The detail is explained in gremlin-mongodb. To get started, I downloaded ...
0
votes
1answer
34 views
Groovy/Gremlin class naming scheme (capital letter required)
What is the difference between the following Groovy/Gremlin snippets? (both saved as *.groovy files and run with ./gremlin.sh -e [filename].groovy)
class user
{
String username
static void ...
2
votes
2answers
134 views
Neo4j-Use Gremlin to find shortest path and its traversal cost
I'd like to traverse my weighted graph from a starting node to a certain depth and print the traversal nodes and cumulative weight.
For instance, in a graph like this: A--1--B--2--C--1--D, ...
0
votes
1answer
80 views
Gremlin: SetProperty iteratively to existing graph database
I am trying to run JUNGs PageRank algorithm onto my existing neo4j graph database and save a node's score as a property for future reference.
So I created the following groovy file:
import ...
0
votes
1answer
125 views
Neo4j Cypher: Get mutual friends network
I believe what I have should be a very straightforward, yet for some reason I am not getting forward. I have the classical social network setup where users can be friends with each other. I know want ...
1
vote
1answer
183 views
Gremlin Traversal in Neo4J
In my database, I can extract subgraphs by using a native Neo4J traversal that looks a little like this:
TraversalDescription td = Traversal.description()
.depthFirst()
.relationships(Relation.REL1, ...
2
votes
2answers
91 views
Tinkerpop - Is it better to use Redis for key-value property indexes or to use KeyIndexableGraph
Pretty straightforward question but I can't find the info that I want - is it advisable to use the KeyIndexableGraph of tinkerpop or to roll your own super performant key/index solution on the most ...
1
vote
2answers
116 views
How to return all newest nodes from neo4j?
Is it possible to query neo4j for the newest nodes? In this case, the indexed property "timestamp" records time in milliseconds on every node.
All of the cypher examples I have lfound concern ...
1
vote
1answer
64 views
Gremlin sideEffect variable assignment doesn't work
I'm trying to accomplish vertex-wise subgraph matching using the following construct:
a = g.v(1)
p = g.v(5)
a.filter{it.map() == p.map()}.out.sideEffect{p = p.out}.loop(3){it.object != null}
I ...
0
votes
1answer
184 views
Tinkerpop - how do I find a node in the graph?
I can't seem to find a specific node in the graph without traversing the whole thing. Is there something I'm missing?
I'm using tinkerpop blueprints.
Orientdb gives some sort of unsemantic id to a ...
0
votes
1answer
318 views
OrientDB - Performance with big data
I'm using OrientDB in my project, what I really concern about is the performance. I created big data to test it, with 500 000 persons and 500 000 interests, and random relationships between persons ...
0
votes
1answer
116 views
Nested records in orientDB and querying the same
I need to store a graph with vertices and edges.My use case is as follows:
Each vertex has following properties.
There are some basic properites like name , age etc and then there are some record ...
0
votes
2answers
143 views
Neo4j - Gremlin - How to sort results returned by .groupCount.cap()
I have one problem.
this query:
g.V.filter{it.type == 'user'}.outE.filter{it.label == 'follow'}.outV.groupCount().cap()
return HashMap
{v[1]=1, v[138]=3, v[140]=3, v[6]=1, v[203]=1, v[619]=7, ...
0
votes
0answers
69 views
how graph Db handles filtering at each node based on some condition
As per my understanding of orientDB it supports schema less and schema database.
In my case each vertex has some properties for now and tomorrow more properties can be added
Assume i have a class ...
0
votes
2answers
74 views
Gremlin: How to reference for loop variable within query?
reI'm stuck with a gremlin query to assign rank values to nodes based on a sorted list of keys passed to the query as a parameter.
Each node identified by "uniqueId" values should be assigned a rank ...
0
votes
1answer
193 views
find all paths between 2 vertices by only considering vertex where propertyname = value
I am having a a traversal use case as follows .Does orientDb supports it?
1)Find all paths from node1 to node2 .ONLY TRAVERSE those nodes which has property xyz="val1"
2)Find shortest path .ONLY ...
0
votes
2answers
101 views
Retrival time of orient DB while finding paths between 2 vertex
We have a use case where we need to to use graph db.There are around
10000 nodes and 1000000 edges (approx).
Now i need to query like this. For any 2 vertex find all possible paths between them.
...
0
votes
1answer
250 views
Use Gremlin with Java API for OrientDB
I'm using Gremlin to traverse OrientDB, but I'm not quite understand the demo code from here OrientDB Gremlin Wiki
Here is my code, what's wrong with this code?
// create sample node and ...
1
vote
1answer
105 views
Using gremlin to find all nodes within a given distance from the start node
I'm attempting to use gremlin through java/pipes and as one of my first queries I'm trying to find all nodes which are reachable from a given start node with a maximum distance of 3. In cypher my ...
0
votes
1answer
71 views
How to use a custom function in a Gremlin filter?
In Gremlin I can define a function as follows:
def name_is_potato (v) { return v.has('name','potato').count() == 1}
When I call
name_is_potato(g.V[0])
I get
==>true
But when I enter
...
1
vote
2answers
38 views
Can we check the translated function calls generated by Cypher or Gremlin?
I believe internally Cypher / Gremlin translate statement into corresponding Java method calls. Is there a way to trace what method calls in run?
For example, in Hibernate, we can specify "show sql" ...
0
votes
1answer
74 views
How to getting paths that are self-loops using GremlinPipeline?
I'm working with a network that allows self-loops (i.e., some edges have the same vertex as both head and tail). Suppose, the graph g has 3 vertices (adam, bill, and cid), and 3 edges of type reports ...
0
votes
3answers
70 views
what are the steps to implement neo4j, gremlin for codeigniter user
I need to migrate from RDBMS to GRAPH and decide to implement neo4j with gremlin. But I only have PHP as a server side language. What are the steps to implement neo4j (and gremlin?) in codeigniter ...
0
votes
1answer
96 views
How to get an attribute named ID in gremlin
I'm getting weird results while writing a gremlin query. I can happily use the has function for most of the attributes for my nodes, for example "().has('name', ...
1
vote
1answer
52 views
saving intermediate steps in gremlin
I am writing a query which should detect certain loops within a graph, which means that I need I need to assign names to certain nodes within the path so that I can compare nodes later in the path ...
0
votes
1answer
68 views
Weird result with passing arugument(s) in a user-defined step in Gremlin
I've created a user-defined step called otherV that starts from an edge (e) and takes a single Vertex argument (either e.inV or e.outV), and outputs the other vertex on that edge.
...
10
votes
5answers
2k views
Neo4j - Cypher vs Gremlin query language
I'm starting to develop with Neo4j using the REST API.
I saw that there are two options for performing complex queries - Cypher (Neo4j's query language) and Gremlin (the general purpose graph ...
0
votes
2answers
118 views
Comparsion between friend-of-friend-of-friend-of… relationships in MySQL and Neo4J
To see the advantages of using Neo4J for friend-relationships, i created on MySQL database with one table for the Persons ("Persons", 20900 datasets):
id | name
--------------
1 | Peter
2 ...
1
vote
1answer
86 views
How to get all edges of two given types (i.e., labels) for a given vertex, only when both edges exist?
For a given vertex, how can we get all the out-edges of two different types (i.e. labels) only when both edge-types exist for that vertex??
For example,
g = TinkerGraphFactory.createTinkerGraph();
...
0
votes
1answer
146 views
persistent custom-steps in Gremlin using Neo4J Graph-DB
i am using "gremlin-groovy 2.1.0" connectig to a Neo4J-DB via the gremlin console:
gremlin> g = new Neo4jGraph('/home/user/neo4j-enterprise-1.7.2/data/graph.db')
so far no problems. Now i want ...


