How to perform search with multiple operators?

Hi @Utsav_Upadhyay2 , can you share your index definition? Have you tried using an index with dynamic mapping and searching with a wildcard query path?
Index definition:

  "mappings": {
    "dynamic": true
  }
}

Query:

[
  {
    "$search": {
      "index": "default",
      "text": {
        "query": "string",
        "path": {
          "wildcard": "*"
        }
      }
    }
  }
]