I do have a feature file which is retrieving a data from a query and when calling another feature file it will pass the query result as well as a statement values.
statement parameter:
- Source i.e. Provider
- target i.e. Tenant
query response:
- Qname i.e. defaultDirectory
These three values have to be passed to another feature file as POST statements. The POST statement will look like at the end:
And request {"statements": [{"statement": "match(p:Provider)--(t:Tenant{Name:'defaultDirectory'}) return p"}]}
When method POST
I am lost on how to declare these values in feature file 1 and how to do the statement with these parameters.