neo4j-graphql-js
neo4j-graphql-js copied to clipboard
Adds case insensitive filter
Most applications need case insensitive filtering. This PR adds that feature through the use of a contains_i
input type.
{
Movie(filter: {title_contains_i: "river"}) {
title
}
}
TODO:
- [ ] write integration test
The addition of these filters would provide great benefit and with easiness to use
https://github.com/neo4j-graphql/neo4j-graphql-js/issues/608