In my cloud function I need to save similar JS object:
const person = {
firstName: "John",
lastName: "Doe",
age: 50,
eyeColor: "blue"
};
to a file named person.json. I want to store it on my Moralis server, not IPFS. I went through this documentation https://docs.moralis.io/moralis-server/files/files but I don’t know how to do it with JSON. Thanks