[Query Error] bad key in untransform: __v

Hi, there.
I got an error when I query _user table today , but it was success before.
Did Moralis change some auth in query ?

code:
let query = new Parse.Query("_User");
query.limit(9000);
let users = await query.find({useMasterKey:true});

    console.log(users)

=================
error:
“Error”:{

3 items

“message”:

string"bad key in untransform: __v"

“name”:

string"Error"

“stack”:

string"Error: bad key in untransform: __v at handleError (https://xxxx.moralishost.com:2083/bundles/dashboard.bundle.js:2:1573173) at async eval (eval at (https://xxxx.moralishost.com:2083/bundles/dashboard.bundle.js:2:3137005), :13:21)"

}

Anyone could help this error ?
Thanks in advance

Hi, there.
I change limit from 9000 to 6404
it can work,and I have 6413 rows in User Class.
I can’t search 6405~6413 datas
how could I fix that problem
Could anybody know this problem?

Hi,there
I fix that problem when I delete some accounts which use other endpoints to connect the mongodb and add some error accounts .
Thanks