9.37 ms (80.94%)
|
1 |
SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.meta_description AS meta_description_4, t0.excerpt AS excerpt_5, t0.social_image_name AS social_image_name_6, t0.thumbnail_name AS thumbnail_name_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.content AS content_10, t0.spotlight AS spotlight_11 FROM news t0 WHERE t0.slug = ? LIMIT 1
Parameters: [
"article-test"
]
SELECT t0.id AS id_1, t0.title AS title_2, t0.slug AS slug_3, t0.meta_description AS meta_description_4, t0.excerpt AS excerpt_5, t0.social_image_name AS social_image_name_6, t0.thumbnail_name AS thumbnail_name_7, t0.created_at AS created_at_8, t0.updated_at AS updated_at_9, t0.content AS content_10, t0.spotlight AS spotlight_11 FROM news t0 WHERE t0.slug = 'article-test' LIMIT 1;
|
0.94 ms (8.15%)
|
1 |
SELECT n0_.id AS id_0, n0_.title AS title_1, n0_.slug AS slug_2, n0_.meta_description AS meta_description_3, n0_.excerpt AS excerpt_4, n0_.social_image_name AS social_image_name_5, n0_.thumbnail_name AS thumbnail_name_6, n0_.created_at AS created_at_7, n0_.updated_at AS updated_at_8, n0_.content AS content_9, n0_.spotlight AS spotlight_10 FROM news n0_ WHERE n0_.id < ? ORDER BY n0_.id DESC LIMIT 1
SELECT n0_.id AS id_0, n0_.title AS title_1, n0_.slug AS slug_2, n0_.meta_description AS meta_description_3, n0_.excerpt AS excerpt_4, n0_.social_image_name AS social_image_name_5, n0_.thumbnail_name AS thumbnail_name_6, n0_.created_at AS created_at_7, n0_.updated_at AS updated_at_8, n0_.content AS content_9, n0_.spotlight AS spotlight_10 FROM news n0_ WHERE n0_.id < 5 ORDER BY n0_.id DESC LIMIT 1;
|
0.63 ms (5.46%)
|
2 |
SELECT n0_.content AS content_0, n0_.field AS field_1 FROM news_translations n0_ WHERE n0_.foreign_key = ? AND n0_.locale = ? AND n0_.object_class = ?
Parameters: [
"5"
"en_US"
"App\Entity\News"
]
SELECT n0_.content AS content_0, n0_.field AS field_1 FROM news_translations n0_ WHERE n0_.foreign_key = '5' AND n0_.locale = 'en_US' AND n0_.object_class = 'App\\Entity\\News';
|
0.63 ms (5.45%)
|
1 |
SELECT n0_.id AS id_0, n0_.title AS title_1, n0_.slug AS slug_2, n0_.meta_description AS meta_description_3, n0_.excerpt AS excerpt_4, n0_.social_image_name AS social_image_name_5, n0_.thumbnail_name AS thumbnail_name_6, n0_.created_at AS created_at_7, n0_.updated_at AS updated_at_8, n0_.content AS content_9, n0_.spotlight AS spotlight_10 FROM news n0_ WHERE n0_.id > ? ORDER BY n0_.id ASC LIMIT 1
SELECT n0_.id AS id_0, n0_.title AS title_1, n0_.slug AS slug_2, n0_.meta_description AS meta_description_3, n0_.excerpt AS excerpt_4, n0_.social_image_name AS social_image_name_5, n0_.thumbnail_name AS thumbnail_name_6, n0_.created_at AS created_at_7, n0_.updated_at AS updated_at_8, n0_.content AS content_9, n0_.spotlight AS spotlight_10 FROM news n0_ WHERE n0_.id > 5 ORDER BY n0_.id ASC LIMIT 1;
|