Query
Query a Neo4j database.
type: "io.kestra.plugin.neo4j.Query"
Examples
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
Properties
bearerToken string
Token base64 encoded token
password string
Password to use in case of basic auth
If not specified, won't use basic auth
query string
The Neo4J query to perform.
storeType string
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
url string
The URL to a Neo4j instance
The URL can either be in HTTP or Bolt format
username string
Username to use in case of basic auth
If not specified, won't use basic
Outputs
row object
Map containing the first row of fetched data
Only populated if using FETCHONE
.
rows array
List containing the fetched data
Only populated if using FETCH
.
size integer
The count of the rows fetch
uri string
uri
The uri of the stored result
Only populated if using STORE