I tried to send the value of an input field to a cypher query. For example when the user introduces a technology and clicks the submit button must appear a list of the assigned programmers. This code is at submit button:
match (technology:Technology {name: ${technology.name}})<-[skill:SKILL]-(Programmer) return Programmer,skill,technology
In the input field i set the value with ${technology.name}.This is the generated code:
<div>
<form action="/search" method="POST" data-structr-attr="technology">
<input value="" data-structr-name="technology">
<input type="submit" value="submit">
</form>
</div>
The problem is that nothing happens. Does anyone know where I did wrong? Thank you.