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
Token base64 encoded token
Password to use in case of basic auth
If not specified, won't use basic auth
The Neo4J query to perform.
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
The URL to a Neo4j instance
The URL can either be in HTTP or Bolt format
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
The uri of the stored result
Only populated if using STORE