neo4j-graphql / neo4j-graphql-java

Neo4j Labs Project: Pure JVM translation for GraphQL queries and mutations to Neo4j's Cypher

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using a variable as filter does not work

Andy2003 opened this issue · comments

The following test is failing

GraphQL-Query:

query filterQuery($filter: _PersonFilter) { person(filter: $filter) { name }}

Query variables

{
  "filter": {
    "name": "Jane",
    "company": {
      "name_ends_with": "ME"
    }
  }
}