Query
Execute a query on a neo4j database.
type: "io.kestra.plugin.neo4j.Query"
id: neo4j_query
namespace: company.team
tasks:
- id: query
type: io.kestra.plugin.neo4j.Query
url: "{{ url }}"
username: "{{ username }}"
password: "{{ password }}"
query: |
MATCH (p:Person)
RETURN p
storeType: FETCH
YES
Token base64 encoded token
YES
Password to use in case of basic auth
If not specified, won't use basic auth
YES
The Neo4J query to perform.
YES
NONE
STORE
FETCH
FETCHONE
NONE
The way you want to store the data
FETCHONE output the first rowFETCH output all the rowSTORE store all row in a fileNONE do nothing
YES
The URL to a Neo4j instance
The URL can either be in HTTP or Bolt format
YES
Username to use in case of basic auth
If not specified, won't use basic
Map containing the first row of fetched data
Only populated if using FETCHONE
.
List containing the fetched data
Only populated if using FETCH
.
The count of the rows fetch
uri
The uri of the stored result
Only populated if using STORE