You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 3, 2021. It is now read-only.
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 ?