Questions tagged [neo4j-aura]
20 questions
3
votes
2 answers
How do I edit neo4j.conf in an AuraDB instance?
I am trying to edit the settings of my AuraDB hosted neo4j instance, specifically, trying to set the following line:
apoc.import.file.enabled=true
I have looked at the official tutorial and many other places, and for the life of me, I am not able…

Bertil Johannes Ipsen
- 1,656
- 1
- 14
- 27
3
votes
0 answers
Issue connecting to Noe4j Aura with Python 'neo4j' driver
I attempted to connect neo4j aura database using Python but failed as "Unable to retrieve routing information".
from neo4j import GraphDatabase
from neo4j.debug import watch
uri = "neo4j+s://.databases.neo4j.io"
driver =…

Nekoken
- 31
- 1
1
vote
1 answer
Neo4j Aura demo python AttributeError: 'Session' object has no attribute 'execute_write'
In the Aura Python connection code, I have an issue with getting
attributeError: 'Session' object has no attribute 'execute_write' / 'execute_read' in
line 17 result = session.execute_write
line 44 result = session.execute_read

Spanarchian
- 31
- 2
1
vote
1 answer
Neo4j-admin load dump.file returning: Not a valid Neo4j archive
The dump comes from exporting a snapshot from AuraDB, as stated in Neo4j documentation.
im working with Neo4j Community 4.1.11 in Ubuntu, none of the other answers i found have been helpful...
Let me know what other piece of info you need to assess…

Juan Casabo
- 11
- 2
1
vote
1 answer
How to visualize remote neo4j auradb with neovis.js?
I have a remote AuraDB, but I'm unable to visualize with neovis.js
var config = {
container_id: "viz",
server_url: "bolt://:7687",
server_user: ,
server_password: ,
…

Aditya Vashist
- 43
- 4
1
vote
2 answers
Connecting to Neo4j Aura with .NET Core 2.2 web api
I am trying to connect a to Neo4j Aura instance from a .NET core 2.2 web api. I understand I need the Neo4j .Net Driver v4.0.0-alpha01, but I do not seem to be able to connect. There aren't very many examples out there as this driver is new and so…

David W.
- 1,074
- 4
- 10
- 22
0
votes
1 answer
Neomodel + Aura DB -> Exception ignored in:
I'm getting exception in console during running the next code:
ImportError: sys.meta_path is None, Python is likely shutting down
Exception ignored in:
I'm using Python 3.10, neomodel and Neo4j…

Dzianis
- 1
- 1
0
votes
0 answers
Should the Neo4j AuraDB Free Pause Parameters be changed?
Sometimes with less than 3 days absence, a Neo4j AuraDB pause has kicked in for me several times. When there is a holiday period or some other absence required, it can be difficult to make sure one logs in so frequently.
It seems this pause…

FChey
- 11
- 1
0
votes
0 answers
Mule connection with neo4j aura
Is it possible to connect neo4j aura with Mule?
I have given bolt url as neo4j+s:// and rest url as https://workspace-preview.neo4j.io/workspace/query then getting an error like "Tests connection failed: scanning for projects".
0
votes
0 answers
How to make transactions running a particular query execute sequentially in Neo4j?
I'm working on an app where users can un-bookmark a post they've bookmarked before. But I realized that if multiple requests is sent by a particular user to un-bookmark a post they've bookmarked before, node properties get set multiple times. For…

Emmanuel
- 47
- 2
- 6
0
votes
1 answer
Cannot read properties of undefined (reading 'concepts')
Solution: "data" from the Apollo query was not arriving on time for a check in the options property of the Autocomplete component, even though loading was complete. My final code for the Autocomplete component:

rvhorton
- 13
- 4
0
votes
1 answer
Neo4j Aura: Can a user be defined and set a role such as 'publisher'
I have created an instance in Neo4j Aura and using the default user neo4j I am able to create a user using
CREATE USER test SET PLAINTEXT PASSWORD 'test'
This by default sets the user role to [PUBLIC]
I tried to alter the user role to editor…

RmR
- 1,917
- 1
- 22
- 35
0
votes
1 answer
Neo4j AuraDB scalability of read queries
My read business query works fine on 10k business entities for 1 single client. 1 business entity is a complex structure which involves tens of nodes and relationships.
In case I'd like to have the same performance for the query for 10 concurrent…

alexanoid
- 24,051
- 54
- 210
- 410
0
votes
1 answer
Auradb using query browser do not have any response from Cypher queries sent from the Brave browser
I have created an auradb instance that is managed by Neo4j.
I click "query" in the following interface:
Then when I provide the credentials to connect to the cypher query interface:
Then when I try the following simple query it returns with the…

Syed Arefinul Haque
- 1,123
- 2
- 14
- 38
0
votes
1 answer
How Do I Connect to a Neo4J AuraDB Instance from R Studio
I created a Neo4j AuraDB database where I have dumped the movie recommendation dataset. I am able to start and connect to the instance in the cloud. However, when I try to connect to the instance via its API in R Studio, using the neo4r package and…

Idiaye
- 39
- 8