This is more a question than anything else, let me provide a little background on my issue.
I have a profile page that uses getserversideprops to fetch the users profile page, this uses Moralis imported from Moralis/node. That works perfectly.
My issue is that I need to use query.get(profileId) to update said user profile.
but I cannot do that on the object returned from serversideprops.
So I turn to the useMoralisQuery hook from react-moralis. Now that queries fine, but how do I use that object returned from the hook to actually update the profile? I can’t seem to find anything in the react-moralis docs about updating objects besides the user object.
any help would be appreciated thanks!