After using the latest version, both the client and ratelUI are very slow queries

SYSTEM:

DGRAPH:
SCHEMA:
human_id:string @index(term) .
relation:uid @reverse @count .
company_id:string @index(term) .
human_name:string @index(term) .
create_time:string @index(term) .
update_time:string @index(term) .
share_hash:string @index(exact) .
company_name:string @index(fulltext,term) .

DATA:
30000 company_id

QUERY:
{
query(func:eq(company_id,“99”)){
uid
}
}