What is `D1_ERROR: Failed to parse body as JSON` i get randomly on my query ``` const sqlQuery = en

What is
D1_ERROR: Failed to parse body as JSON
i get randomly on my query

const sqlQuery = env.DB.prepare(
    `SELECT * FROM Resources WHERE resource_id = ? and account_id = ?`
  ).bind(resourceId, authUser.account_id);
  const resource = await sqlQuery.first<Resource>();
image.png
Was this page helpful?