| 1 |
8.21 ms |
SELECT i0_.id AS id_0, i0_.email AS email_1, i0_.username AS username_2, i0_.password AS password_3, i0_.first_name AS first_name_4, i0_.last_name AS last_name_5, i0_.middle_name AS middle_name_6, i0_.phone AS phone_7, i0_.location AS location_8, i0_.gender AS gender_9, i0_.birth_date AS birth_date_10, i0_.avatar AS avatar_11, i0_.comment AS comment_12, i0_.is_active AS is_active_13, i0_.last_login_at AS last_login_at_14, i0_.created_at AS created_at_15, i0_.updated_at AS updated_at_16, i0_.deleted_at AS deleted_at_17, i0_.roles AS roles_18, i0_.is_admin AS is_admin_19 FROM "identity_employee" i0_ WHERE (i0_.email = ? OR i0_.username = ?) AND i0_.deleted_at IS NULL
Parameters: [
"timrod"
"timrod"
]
SELECT i0_.id AS id_0, i0_.email AS email_1, i0_.username AS username_2, i0_.password AS password_3, i0_.first_name AS first_name_4, i0_.last_name AS last_name_5, i0_.middle_name AS middle_name_6, i0_.phone AS phone_7, i0_.location AS location_8, i0_.gender AS gender_9, i0_.birth_date AS birth_date_10, i0_.avatar AS avatar_11, i0_.comment AS comment_12, i0_.is_active AS is_active_13, i0_.last_login_at AS last_login_at_14, i0_.created_at AS created_at_15, i0_.updated_at AS updated_at_16, i0_.deleted_at AS deleted_at_17, i0_.roles AS roles_18, i0_.is_admin AS is_admin_19 FROM "identity_employee" i0_ WHERE (i0_.email = 'timrod' OR i0_.username = 'timrod') AND i0_.deleted_at IS NULL;
|
| 2 |
0.93 ms |
SELECT i0_.id AS id_0, i0_.email AS email_1, i0_.username AS username_2, i0_.password AS password_3, i0_.first_name AS first_name_4, i0_.last_name AS last_name_5, i0_.middle_name AS middle_name_6, i0_.phone AS phone_7, i0_.location AS location_8, i0_.gender AS gender_9, i0_.birth_date AS birth_date_10, i0_.avatar AS avatar_11, i0_.comment AS comment_12, i0_.is_active AS is_active_13, i0_.last_login_at AS last_login_at_14, i0_.created_at AS created_at_15, i0_.updated_at AS updated_at_16, i0_.deleted_at AS deleted_at_17, i0_.roles AS roles_18, i0_.is_admin AS is_admin_19 FROM "identity_employee" i0_ WHERE i0_.email = ? AND i0_.deleted_at IS NULL
Parameters: [
"timrod.v@gmail.com"
]
SELECT i0_.id AS id_0, i0_.email AS email_1, i0_.username AS username_2, i0_.password AS password_3, i0_.first_name AS first_name_4, i0_.last_name AS last_name_5, i0_.middle_name AS middle_name_6, i0_.phone AS phone_7, i0_.location AS location_8, i0_.gender AS gender_9, i0_.birth_date AS birth_date_10, i0_.avatar AS avatar_11, i0_.comment AS comment_12, i0_.is_active AS is_active_13, i0_.last_login_at AS last_login_at_14, i0_.created_at AS created_at_15, i0_.updated_at AS updated_at_16, i0_.deleted_at AS deleted_at_17, i0_.roles AS roles_18, i0_.is_admin AS is_admin_19 FROM "identity_employee" i0_ WHERE i0_.email = 'timrod.v@gmail.com' AND i0_.deleted_at IS NULL;
|
| 3 |
3.97 ms |
SELECT t0.id AS id_1, t0.name AS name_2, t0.description AS description_3, t0.permissions AS permissions_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7 FROM identity_position t0 INNER JOIN identity_employee_position ON t0.id = identity_employee_position.position_id WHERE identity_employee_position.employee_uuid = ?
Parameters: [
"019fb3ae-6973-7324-b082-7f04ed687d65"
]
SELECT t0.id AS id_1, t0.name AS name_2, t0.description AS description_3, t0.permissions AS permissions_4, t0.created_at AS created_at_5, t0.updated_at AS updated_at_6, t0.deleted_at AS deleted_at_7 FROM identity_position t0 INNER JOIN identity_employee_position ON t0.id = identity_employee_position.position_id WHERE identity_employee_position.employee_uuid = '019fb3ae-6973-7324-b082-7f04ed687d65';
|