Hi!
I am working with GDS pipelines and wanted to introspect the content of the projected graph with the streamNodeProperties function but it is currently failing to find the property in the projected graph.
Here is my code (using the Python client):...
Hi all,
I am trying to setup a neo4j service in a GitHub action. For now, the action yml contains:
services:
# Label used to access the service container
neo4j:
# Docker Hub image
image: neo4j:latest
env:
...
Hi!
As the title says, neomap is integrated into Neo4j Desktop. It automatically connects to the active graph and from there you can choose the nodes you want to visualize and they will be displayed as location markers (with optional tooltips) or hea...
Sure you can also do that. In your KB class you can probably have a method returning dictionnaries, then the dict keys are used as variables in the query you execute with the driver, something like:
query = """
MERGE (head:Entity {name: $head})
MERGE...
Hello,
You can save your result as JSON and import it with APOC: apoc.load.json (https://neo4j.com/labs/apoc/4.4/overview/apoc.load/apoc.load.json/)
Not tested, but query could look like this:
CALL apoc.load.json("path/to/file.json") YIELD value
MERG...
Hello,
I have been able to reproduce your error. The problem comes from the password: the driver does not convert int to string and seems to send the bad type to the server. To fix your code, just use a string for the password instead of a number:
b...
Hello,
1. Usually, you don't store documents directly into Neo4j, those go into an object storage like local disk, S3 or whatever. However, you can use a Natural Language Processing (NLP) tool for Named Entity Extraction (NER) and Entity Relation Ext...