you can try .save(null,{useMasterKey:true});
https://docs.moralis.io/moralis-server/cloud-code/cloud-functions#using-the-master-key-in-cloud-code
you can try .save(null,{useMasterKey:true});
https://docs.moralis.io/moralis-server/cloud-code/cloud-functions#using-the-master-key-in-cloud-code
you can try await for that .save
Yup. Tried that already…
const queryResult = await query.first();
queryResult.set("theUpdateValue", request.params.canClaim);
return await queryResult.save(null,{useMasterKey:true})
you can try .find instead of .first and then to get the first element, it shouldn’t be a difference
That was the first approach that i tried. Then i found Moralis: Updating Objects which used .first()
The table has many rows. Like 23k, could that be related?
what is the server url?
it shouldn’t be a problem with 23k rows
does it work with other tables or it never worked?
I have not needed to update other tables. I can try i guess.
It has never worked, this is my first time implementing it.
List/Get/Create all seem to work fine. It is only the update that is letting me down.
This table was populated with Direct Database access. That could be another difference.
https://docs.moralis.io/moralis-server/database/direct_access
import json
import pymongo
MONGO_HOST = "2342"
MONGO_PORT = 56728
con = pymongo.MongoClient(MONGO_HOST, MONGO_PORT)
qualifier_table = con['parse']['AirdropQualifier']
with open(f"qualifier_data.json","r") as json_file:
white_list = json.load(json_file)
qualifier_table.insert_many(white_list)
The createdAt and updatedAt fields are (undefined)
I saw that the table seems to have strange data, like no createdAt or updatedAt, and the objectId seems strange, maybe that is the problem
I’ll try adding those fields when i populate the database. This is starting to make sense!
can you try not to set the objectId and maybe it creates automatically an object id?
That’s what we did originally.
I tried again, setting only createdAt and updatedAt and it now has duplicated ids.
I’ll try doing it manually via the Moralis SDK but with 23k rows it is not ideal.
where is bulk write too
createdAt and updatedAt shouldn’t be the problem, but that ID didn’t look like an id with the same format as in the other tables
BulkWrite only works from cloudfunctions.
This is going to take awhile.
can you test first if it works fine with few rows?