7.22 ms (41.09%)
|
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.hashed_password AS hashed_password_3, t0.display_name AS display_name_4, t0.roles AS roles_5, t0.avatar_url AS avatar_url_6, t0.theme_config AS theme_config_7, t0.status AS status_8, t0.custom_status_text AS custom_status_text_9, t0.last_seen_at AS last_seen_at_10, t0.created_at AS created_at_11, t0.is_email_verified AS is_email_verified_12, t0.email_verification_token AS email_verification_token_13, t0.email_verification_token_expires_at AS email_verification_token_expires_at_14, t0.account_type AS account_type_15, t0.description AS description_16, t0.organization_category AS organization_category_17, t0.featured_channel_id AS featured_channel_id_18, t0.contact_email AS contact_email_19, t0.website_url AS website_url_20, t0.phone_number AS phone_number_21, t0.postal_address AS postal_address_22, t0.group_visibility AS group_visibility_23, t0.accepts_membership_requests AS accepts_membership_requests_24, t0.tutorial_completed AS tutorial_completed_25, t0.archived_at AS archived_at_26, t0.white_label_config AS white_label_config_27, t0.subdomain AS subdomain_28 FROM users t0 WHERE t0.email = ? LIMIT 1
Parameters: [
"admin@festival-remparts.dev"
]
SELECT t0.id AS id_1, t0.email AS email_2, t0.hashed_password AS hashed_password_3, t0.display_name AS display_name_4, t0.roles AS roles_5, t0.avatar_url AS avatar_url_6, t0.theme_config AS theme_config_7, t0.status AS status_8, t0.custom_status_text AS custom_status_text_9, t0.last_seen_at AS last_seen_at_10, t0.created_at AS created_at_11, t0.is_email_verified AS is_email_verified_12, t0.email_verification_token AS email_verification_token_13, t0.email_verification_token_expires_at AS email_verification_token_expires_at_14, t0.account_type AS account_type_15, t0.description AS description_16, t0.organization_category AS organization_category_17, t0.featured_channel_id AS featured_channel_id_18, t0.contact_email AS contact_email_19, t0.website_url AS website_url_20, t0.phone_number AS phone_number_21, t0.postal_address AS postal_address_22, t0.group_visibility AS group_visibility_23, t0.accepts_membership_requests AS accepts_membership_requests_24, t0.tutorial_completed AS tutorial_completed_25, t0.archived_at AS archived_at_26, t0.white_label_config AS white_label_config_27, t0.subdomain AS subdomain_28 FROM users t0 WHERE t0.email = 'admin@festival-remparts.dev' LIMIT 1;
|
4.75 ms (27.06%)
|
1 |
SELECT e.id, e.title, e.start_at, e.end_at, e.location, e.description,
e.recurrence, e.recurrence_until,
e.conversation_id, c.name AS conversation_name
FROM calendar_events e
JOIN channels c ON c.id = e.conversation_id
WHERE e.conversation_id = ?
AND e.start_at < ?
AND (
e.recurrence = 'none' AND e.start_at >= ?
OR e.recurrence <> 'none' AND (e.recurrence_until IS NULL OR e.recurrence_until >= ?)
)
ORDER BY e.start_at ASC
Parameters: [
"019f9b73-07f0-7146-8dc8-f8171f31df5a"
"2026-09-24 00:00:00"
"2026-07-26 00:00:00"
"2026-07-26 00:00:00"
]
SELECT e.id, e.title, e.start_at, e.end_at, e.location, e.description,
e.recurrence, e.recurrence_until,
e.conversation_id, c.name AS conversation_name
FROM calendar_events e
JOIN channels c ON c.id = e.conversation_id
WHERE e.conversation_id = '019f9b73-07f0-7146-8dc8-f8171f31df5a'
AND e.start_at < '2026-09-24 00:00:00'
AND (
e.recurrence = 'none' AND e.start_at >= '2026-07-26 00:00:00'
OR e.recurrence <> 'none' AND (e.recurrence_until IS NULL OR e.recurrence_until >= '2026-07-26 00:00:00')
)
ORDER BY e.start_at ASC;
|
3.92 ms (22.32%)
|
1 |
SELECT t0.id AS id_1, t0.owner_id AS owner_id_2, t0.name AS name_3, t0.slug AS slug_4, t0.type AS type_5, t0.is_public AS is_public_6, t0.category_id AS category_id_7, t0.group_id AS group_id_8, t0.parent_channel_id AS parent_channel_id_9, t0.channel_type AS channel_type_10, t0.purpose AS purpose_11, t0.default_session_location AS default_session_location_12, t0.default_session_min_participants AS default_session_min_participants_13, t0.default_session_max_participants AS default_session_max_participants_14, t0.deleted_at AS deleted_at_15, t0.settings AS settings_16 FROM channels t0 WHERE t0.id = ?
Parameters: [
"019f9b73-07f0-7146-8dc8-f8171f31df5a"
]
SELECT t0.id AS id_1, t0.owner_id AS owner_id_2, t0.name AS name_3, t0.slug AS slug_4, t0.type AS type_5, t0.is_public AS is_public_6, t0.category_id AS category_id_7, t0.group_id AS group_id_8, t0.parent_channel_id AS parent_channel_id_9, t0.channel_type AS channel_type_10, t0.purpose AS purpose_11, t0.default_session_location AS default_session_location_12, t0.default_session_min_participants AS default_session_min_participants_13, t0.default_session_max_participants AS default_session_max_participants_14, t0.deleted_at AS deleted_at_15, t0.settings AS settings_16 FROM channels t0 WHERE t0.id = '019f9b73-07f0-7146-8dc8-f8171f31df5a';
|