I am making queries in kibana and am getting errors. Specifically, I want my search query to be just one space. Here is an example: request.query(" "). However, I keep getting an error where it says it there is a parsing exception. Does anyone know how to properly format a string query with one blank space properly so that no error is returned? Thank you in advance!
"query_string":{ "query":"( ) OR (* )",. This is the query. The exception is "type" : "query_shard_exception", "reason" : "Failed to parse query [( ) OR ( *)]",
I have tried using escape characters and whatnot, but it did not seem to help.