πŸ”₯🎰πŸ”₯ ON A ROLL TODAY! Successfully created a new GET endpoint for selecting goals unique to the user when writing a post

Figured out the tricky raw SQL query by leaning on the previous query of using authenticated user object, and then adding `.rows` after the `const`, in order to retrieve a cleaner set of data

`const authorGoals = await strapi.connections.default.raw(`SELECT id, title, description, author FROM goals WHERE author = ${ctx.state.user.id}`);

return authorGoals.rows;`