# \#grapql

**URL:** https://community.neo4j.com/tag/grapql/614.md

[Latest](https://community.neo4j.com/latest.md) · [Categories](https://community.neo4j.com/categories.md) · [Tags](https://community.neo4j.com/tags.md)

---

## [How do I perform a case-insensitive search in Neo4j GraphQL with Apollo Server, using an OGM (Object Graph Mapper) model? Please provide suggestions](https://community.neo4j.com/t/how-do-i-perform-a-case-insensitive-search-in-neo4j-graphql-with-apollo-server-using-an-ogm-object-graph-mapper-model-please-provide-suggestions/69067)

<div class="topic-metadata">

**Author:** [@veerendra.idealittec](https://community.neo4j.com/u/veerendra.idealittec)\
**Replies:** 1\
**Last updated:** [August 27, 2024, 7:14am UTC](https://community.neo4j.com/t/how-do-i-perform-a-case-insensitive-search-in-neo4j-graphql-with-apollo-server-using-an-ogm-object-graph-mapper-model-please-provide-suggestions/69067 "2024-08-27T07:14:00Z")

</div>

let where = { hasUser\_ALL: { id\_IN: inviteList } }; if (ProfileWhere && ProfileWhere.displayName\_MATCHES) { where.displayName\_MATCHES = \`(?i)${ProfileWhere.displayName\_MATCHES}.\*\`; } console.l…
