jonathan
( Jonathan)
November 20, 2020, 4:31pm
1
im using "neo4j-graphql-js": "^2.17.1"
jonathan
( Jonathan)
November 20, 2020, 4:33pm
2
@william.lyon , my guy. is there something i need to know about filtering that you're just not telling me? I'm following the the schema docs, your docs on the grandstack site about filtering. heck, i've even read your fullstack graphql MEAP
# Complex GraphQL Filtering
A `filter` argument is added to field arguments, as well as input types used to support them.
> Filtering is currently supported for scalar fields, enums, `@relation` fields and types. Filtering on `@cypher` directive fields is not yet supported.
## `filter` Argument
The auto-generated `filter` argument is used to support complex filtering in queries. For example, to filter for Movies released before 1920:
```graphql
{
Movie(filter: { year_lt: 1920 }) {
title
year
}
}
```
## Nested Filter
This file has been truncated. show original
Reviewing common issues that arise when building GraphQL backends · Introducing database integrations for GraphQL that aim to address these common problems, specifically neo4j-graphql.js · Building a GraphQL endpoint backed by Neo4j, taking advantage...
what's going on?
jonathan
( Jonathan)
November 21, 2020, 5:08am
3
FIXED: remove graphql from package.json