Create the same flow as stated on the plugin page with appropriate values. Save the flow. You will not be able to save the flow as an error would start appearing.
Environment Information
Kestra Version: 0.15.0
Plugin version: 0.15.0
Operating System (OS / Docker / Kubernetes): Docker
Java Version (If not docker): N/A
Example flow
id: "query"
type: "io.kestra.plugin.neo4j.Query"
url: "{{url}}"
username: "{{username}}"
password: "{{password}}"
query: |
MATCH (p:Person)
RETURN p
storeType: FETCH
Expected Behavior
The flow example as mentioned on the Neo4j plugin page should work seamlessly with proper placeholder values.
Actual Behaviour
When I was trying out the flow as mentioned on the Neo4j plugin page, the flow errors out while trying to save.
The error states "Illegal flow yaml".
The same error comes up with other Neo4j task(https://kestra.io/plugins/tasks/io.kestra.plugin.neo4j.batch) as well.
Steps To Reproduce
Create the same flow as stated on the plugin page with appropriate values. Save the flow. You will not be able to save the flow as an error would start appearing.
Environment Information
Example flow
id: "query" type: "io.kestra.plugin.neo4j.Query" url: "{{url}}" username: "{{username}}" password: "{{password}}" query: | MATCH (p:Person) RETURN p storeType: FETCH