This repository was archived by the owner on Sep 3, 2021. It is now read-only.

Description
Query
query {
Product(filter: {name_contains: "iphone"}) {
id
type: __typename
name
isRepresentedAs {
rating
isMany
timestamp
Page {
id
name
description
isRepresentationOf {
Product {
id
name
}
}
}
}
}
}
if my product is stored as "iPhone" or "IPHONE" in the database the above filter is useless...
it is easy to lowercase the searchstring in the application layer but the whole filter is currently implemented case sensitive, which limits its practical usability.
Could the value be wrapped in toLower() cypher string function before applying CONTAINS ?
Thanks for the great work!