Questions tagged [graphaware]

GraphAware Framework speeds up development with Neo4j by providing a convenient platform for extending Neo4j with generic as well as domain-specific features. Modules with custom functionality can be easily developed and deployed using the Framework. GraphAware also provides a few Modules that serve as reference implementations but can be quite useful in their own right.

GraphAware Framework speeds up development with Neo4j by providing a platform for building useful generic as well as domain-specific functionality, analytical capabilities, (iterative) graph algorithms, etc.

Features

On a high level, there are two key pieces of functionality:

  • GraphAware Server is a Neo4j server extension that allows developers to rapidly build (REST) APIs on top of Neo4j using Spring MVC, rather than JAX-RS

  • GraphAware Runtime is a runtime environment for both embedded and server deployments, which allows the use of pre-built as well as custom modules called GraphAware Runtime Modules. These modules typically extend the core functionality of the database by transparently enriching/modifying/preventing ongoing transactions in real-time performing continuous computations on the graph in the background

Whether or not you use the code in this repository as a framework or runtime as described above, you can always use it as a software library by adding it as a dependency to your project, and take advantage of its useful features. For Java developers only(1), the following functionality is provided:

(1) i.e., for embedded mode users, managed/unmanaged extensions developers, GraphAware Runtime Module developers and framework-powered Spring MVC controller developers

Modules

Modules provided by GraphAware can be downloaded from http://graphaware.com/products/ and include

126 questions
1
vote
0 answers

Spring data Neo4j:No FieldAccessor configured for field

Injected converters aren't recognised in my test class even though I clearly see in the log file entries that the converters were injected successfully. Note: I am using an impermanent database along with GraphUnit for my spring data repository…
Viswanath
  • 1,413
  • 13
  • 25
1
vote
1 answer

Unable to get GraphAware to run on Windows Community edition

I've tried installing and running from the Zip instead of EXE as other have mentioned. Gives a 404 if authorization header is supplied, and 401 if not GraphAware seems to have only a version for 2.2.2, whereas 2.2.3 is the latest on the neo4j site.…
bV bV
  • 11
  • 2
1
vote
2 answers

Spring Data Neo4J and GraphAware TimeTree

Has anyone got GraphAware TimeTree working with Spring Data Neo4J using their Java API and can provide a simple example please?
John
  • 10,837
  • 17
  • 78
  • 141
1
vote
1 answer

Understanding Options for Building TimeTree in Neo4

Is it possible to construct something like GraphAware's TimeTree using Neo4j's CLI, GraphAware's importer, Michael Hunger's batch import, or with py2neo? It would be optimal to be able to do this using Neo4j's CLI (in terms of set up). I want to be…
NumenorForLife
  • 1,736
  • 8
  • 27
  • 55
1
vote
2 answers

Neo4j TimeTree in Spring Data Neo4j 4.0

I'm trying to utilize the timetree library in my spring data neo4j 4.0.0 project. As elaborated in this page, https://github.com/graphaware/neo4j-timetree, I've edited my neo4j.properties file to enable the auto event attaching, add timetree…
0
votes
1 answer

Neo4J Plugin Graphaware TimeTree: Problems when calling ga.timetree

I am using NEO4J in version 4.2.1 (community edition). I wanted to use the plugin TimeTree from Graphaware and copied graphaware-server-community-4.2.0.58.jar timetree-3.5.14.55.29.jar in the plugin folder. I also added ga.timetree.* to…
Balael
  • 401
  • 5
  • 18
0
votes
2 answers

How do you connect to GrapheneDb using graphaware/neo4j-php-client?

I have read the instructions at both https://github.com/graphaware/neo4j-php-client#installation-and-basic-usage and https://docs.graphenedb.com/docs/php While this example from the GrapheneDb docs does work, it does not use GraphAware Neo4j PHP…
dataskills
  • 646
  • 7
  • 15
0
votes
1 answer

Not able to connect AuraDB via PHP GraphAware

I'm trying to connect Aura DB via PHP GraphAware. I was able to connect to the local Neo4j DB via both http, bolt. But when I try to connect to my AuraDB. I was not able to connect.
Aghilan B
  • 493
  • 7
  • 18
0
votes
1 answer

neo4j graphaware php-client: class not found

When I tray to access my neo4j-DB via Graphaware's php-client using http-protocol, I get the following error message: Fatal error: Class 'GraphAware\Common\Result\AbstractRecordCursor' not found in ... On the other hand when I'm using the…
JJJanezic
  • 25
  • 8
0
votes
1 answer

neo4j graphaware php-client: connection refused

I run an XAMPP locally on a MacBook. On the same machine I run neo4j Enterprise. The database is version 3.5.6. When I try to connect to the database via the php client I get a warning ans a fatal error: Warning: stream_socket_client(): unable to…
JJJanezic
  • 25
  • 8
0
votes
0 answers

How to read Neo4j responce array in php

I'm trying to read a cypher return in my php code using GraphAware. I've tried all found variant of return reading, but none of them works. The count of the array is 1, but when I try to echo the array's elements by index or in a loop, nothing is…
Paul Bobyrev
  • 97
  • 3
  • 9
0
votes
0 answers

apoc.periodic.iterate fails with exception: java.util.concurrent.RejectedExecutionException

I am trying run the annotation function of graphaware within Neo4J (see documentation here). I have a set of 5000 nodes (KnowledgeArticles) with textual data in the content property. To annotate those I run the following query in Neo4J desktop: CALL…
N Meibergen
  • 362
  • 2
  • 14
0
votes
1 answer

connection refused - connecting Neo4j/ES docker containers with graphaware

I am trying to connect Neo4j and ES docker containers using graphaware and I get what could be looking like a docker-to-docker connection issue. org.apache.http.conn.HttpHostConnectException: Connect to 127.0.0.1:9201 [/127.0.0.1] failed: Connection…
leag
  • 71
  • 5
0
votes
1 answer

What is the format of the time field in this cypher?

Heading ##CALL ga.timetree.single({time: 1463659567468, create: true}) https://github.com/graphaware/neo4j-timetree https://graphaware.com/neo4j/2014/08/20/graphaware-neo4j-timetree.html The above link says that time is in long format…
krishna reddy
  • 295
  • 2
  • 15
1 2 3
8 9