2.86 ms (44.52%)
|
1 |
SELECT t0.id AS id_1, t0.token_hash AS token_hash_2, t0.label AS label_3, t0.created_at AS created_at_4, t0.expires_at AS expires_at_5, t0.user_id AS user_id_6 FROM api_token t0 WHERE t0.token_hash = ? LIMIT 1
Parameters: [
"94b21c18184353f4acd9c10987b8b92bdc9cec7e3e8b1b13c620029cc2ef7cba"
]
SELECT t0.id AS id_1, t0.token_hash AS token_hash_2, t0.label AS label_3, t0.created_at AS created_at_4, t0.expires_at AS expires_at_5, t0.user_id AS user_id_6 FROM api_token t0 WHERE t0.token_hash = '94b21c18184353f4acd9c10987b8b92bdc9cec7e3e8b1b13c620029cc2ef7cba' LIMIT 1;
|
1.11 ms (17.34%)
|
2 |
SELECT t0.id AS id_1, t0.first_name AS first_name_2, t0.last_name AS last_name_3, t0.birth_date AS birth_date_4, t0.note AS note_5, t0.internal_note AS internal_note_6, t0.created_at AS created_at_7, t0.archived_at AS archived_at_8, t0.parent_id AS parent_id_9, t0.category_id AS category_id_10 FROM child t0 WHERE t0.parent_id = ? ORDER BY t0.first_name ASC
SELECT t0.id AS id_1, t0.first_name AS first_name_2, t0.last_name AS last_name_3, t0.birth_date AS birth_date_4, t0.note AS note_5, t0.internal_note AS internal_note_6, t0.created_at AS created_at_7, t0.archived_at AS archived_at_8, t0.parent_id AS parent_id_9, t0.category_id AS category_id_10 FROM child t0 WHERE t0.parent_id = 5 ORDER BY t0.first_name ASC;
|
0.86 ms (13.49%)
|
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.phone AS phone_7, t0.invite_token AS invite_token_8, t0.invite_expires_at AS invite_expires_at_9, t0.created_at AS created_at_10 FROM app_user t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.phone AS phone_7, t0.invite_token AS invite_token_8, t0.invite_expires_at AS invite_expires_at_9, t0.created_at AS created_at_10 FROM app_user t0 WHERE t0.id = 5;
|
0.68 ms (10.58%)
|
2 |
SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.name AS name_2 FROM category t0 WHERE t0.id = 1;
|
0.63 ms (9.90%)
|
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.phone AS phone_7, t0.invite_token AS invite_token_8, t0.invite_expires_at AS invite_expires_at_9, t0.created_at AS created_at_10 FROM app_user t0 ORDER BY t0.last_name ASC, t0.first_name ASC
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.phone AS phone_7, t0.invite_token AS invite_token_8, t0.invite_expires_at AS invite_expires_at_9, t0.created_at AS created_at_10 FROM app_user t0 ORDER BY t0.last_name ASC, t0.first_name ASC;
|
0.27 ms (4.16%)
|
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.phone AS phone_7, t0.invite_token AS invite_token_8, t0.invite_expires_at AS invite_expires_at_9, t0.created_at AS created_at_10 FROM app_user t0 WHERE t0.email = ? LIMIT 1
Parameters: [
"jakub.kotrady91@gmail.com"
]
SELECT t0.id AS id_1, t0.email AS email_2, t0.roles AS roles_3, t0.password AS password_4, t0.first_name AS first_name_5, t0.last_name AS last_name_6, t0.phone AS phone_7, t0.invite_token AS invite_token_8, t0.invite_expires_at AS invite_expires_at_9, t0.created_at AS created_at_10 FROM app_user t0 WHERE t0.email = 'jakub.kotrady91@gmail.com' LIMIT 1;
|