You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT "users"."id", "users"."name" AS "assignedUser", "reminders"."id", "reminders"."assignedUserID", "reminders"."dueDate", "reminders"."isCompleted", "reminders"."isFlagged", "reminders"."notes", "reminders"."priority", "reminders"."remindersListID", "reminders"."title", "reminders"."updatedAt" AS "reminder", json_group_array(CASE WHEN ("tags"."id" IS NOT NULL) THEN json_object('id', json_quote("tags"."id"), 'title', json_quote("tags"."title")) END) FILTER (WHERE (("tags"."id" IS NOT NULL) AND ("tags"."id" = 4))) AS "tags"
261
+
FROM "reminders"
262
+
LEFT JOIN "remindersTags" ON ("reminders"."id" = "remindersTags"."reminderID")
263
+
LEFT JOIN "tags" ON ("remindersTags"."tagID" = "tags"."id")
264
+
LEFT JOIN "users" ON ("reminders"."assignedUserID" = "users"."id")
0 commit comments