As per this [discussion](https://discuss.dgraph.io/t/how-do-i-query-for-an-empty-string/2198) there could be some use cases where attribute values are empty strings. Dgraph should allow querying in such cases. Data ``` { "data": { "rooms": [ { "name": "room 1" }, { "name": "room 2" }, { "name": "" } ] } } ``` Query ``` { rooms(func: has(room)) { count(room @filter(eq(room, ""))) } } ```