JRedisGraph
JRedisGraph copied to clipboard
Java API for RedisGraph
We are running a bunch of updating statements like this: ``` Statistics statistics = driver.query(graphId, query, params).getStatistics(); return statistics.propertiesSet(); ``` The `query` variable is ``` MATCH (n:Service {site:$match_site, name:$match_name, namespace:$match_namespace,...
Hi, is there any utility in java to load bulk data using csv with JRedisGraph like we have in neo4j?
Latest version of RedisGraph support node with multiple labels this needs to be reflected in the client when creating a node and when parsing a result that contains node
``` GRAPH.QUERY "MATCH (p:Person {name: $name_param, birth_year: $birth_year_param}) RETURN p" query_params "CYPHER name_param = 'Niccolò Machiavelli' birth_year_param = 1469" ```
RedisGraph version: 2.2.6 JRedisGraph version: 2.1.0 For simplicity, let's say we have two Java services talking to a RedisGraph server: one called GraphBuilder, the other called GraphQuerier. They both use...
Remove underscores in the packages/folders below (suggestions added) `src/main/java/com/redislabs/redisgraph/graph_entities` ==> `src/main/java/com/redislabs/redisgraph/entities` `src/main/java/com/redislabs/redisgraph/impl/graph_cache` ==> `src/main/java/com/redislabs/redisgraph/impl/cache`
I have some entities in my graph, such as Device which is own of an Organization, Software which is installed on a Device, etc ![Screen Shot 2021-01-13 at 3 14...