Questions tagged [redisgraph]
97 questions
0
votes
0 answers
How to plot the graph created in redisgraph?
I have created a graph in redisgraph.I want to visualise the graph directly from redisgraph without using another library because again I have to create same graph in that library.How to plot the graph directly from redisgraph?

Debaditya Mandal
- 33
- 6
0
votes
0 answers
Need to display count of distinct locations associated with IP address using Hashmap
We're working on a project and one of the things we need done is to show how many different locations a mac address has shown up in. We're using RedisGraph to query the information and I've used a hashmap to get the data. My problem is that I'll…

rreay724
- 173
- 1
- 2
- 9
0
votes
1 answer
Storing complex data in a properties of a node?
Does redis-graph support storing complex data in a property of a node.
I'm interested in storing a SET f.e. :
age : 35, data : set([1,3,4])
may be you can provide python example how to do that ?
for example when I try this :
In [15]: test4 =…

sten
- 7,028
- 9
- 41
- 63
0
votes
1 answer
How to create all edges that using one statement in Cypher?
How to create all edges that using one statement in Cypher?
For example: lets say I have one object like this
Employees {name: "abc, country: "NZ", zipcode: "123456"}
Employees {name: "def", country: "AUS", zipcode: "964573"}
and lets say I have the…

user1870400
- 6,028
- 13
- 54
- 115
0
votes
1 answer
RedisGraph - Combining multiple directives with MERGE
I am currently running the below query on Neo4J
match (p:Initial{state: 'Initial', name: 'Initial'}), (c:Encounter{code:'abcd', state: 'Encounter', name: 'Encounter1'})
merge (p)-[:raw {person_id:'1234', type:'Encounter', code:'abcd'}]->(c)
However…
0
votes
2 answers
working with complex data type in redis
I'm trying to store nodes of a graph in redis.
My node is of type HashMap(String fromNode, HashMap(String toNode,Integer weight) )
How do I store such data structure in redis?

gaurav1207
- 693
- 2
- 11
- 26
-1
votes
1 answer
ModuleNotFoundError: No module named 'redisgraph'
I am running into an error while importing redisgraph in python but import redis is working fine.

Samual
- 512
- 6
- 19