Randomly receiving "Error: Received an error with invalid JSON from Parse: <!DOCTYPE html>"

For a few minutes now I keep retrieving this error message
"Error: Received an error with invalid JSON from Parse: "

All I do is querying a table which weridly succeeds most of the times but randomly I get that error message I dont know how to handle or where its coming from.

This is the code that triggers the error

export default {
  strategies: async () => {
    const query = new Moralis.Query("Strategy");
    query.includeAll();
    query.limit(500);
    const results = await query.find({ useMasterKey: true });
    return results;
  }
};

I already restarted my server

I didn’t see this before. How often it happens?

1 Like

seems to be gone now, I dont know what that was