0.45 ms (38.05%)
|
1 |
SELECT s0_.id AS id_0, s0_.seller_slug AS seller_slug_1, s0_.title AS title_2, s0_.cover_url AS cover_url_3, s0_.media_url AS media_url_4, s0_.duration_sec AS duration_sec_5, s0_.views AS views_6, s0_.published_at AS published_at_7, s0_.expires_at AS expires_at_8 FROM stories s0_ WHERE s0_.seller_slug = ? AND s0_.expires_at > ? ORDER BY s0_.published_at ASC
Parameters: [
"artist-22"
"2026-05-09 19:12:09"
]
SELECT s0_.id AS id_0, s0_.seller_slug AS seller_slug_1, s0_.title AS title_2, s0_.cover_url AS cover_url_3, s0_.media_url AS media_url_4, s0_.duration_sec AS duration_sec_5, s0_.views AS views_6, s0_.published_at AS published_at_7, s0_.expires_at AS expires_at_8 FROM stories s0_ WHERE s0_.seller_slug = 'artist-22' AND s0_.expires_at > '2026-05-09 19:12:09' ORDER BY s0_.published_at ASC;
|
0.28 ms (23.56%)
|
1 |
SELECT c0_.slug AS slug_0, c0_.id AS id_1, c0_.title AS title_2, c0_.price_cents AS price_cents_3, c0_.old_price_cents AS old_price_cents_4, c0_.seller_slug AS seller_slug_5, c0_.seller_name AS seller_name_6, c0_.seller_country AS seller_country_7, c0_.category_slug AS category_slug_8, c0_.primary_image_url AS primary_image_url_9, c0_.charity_percent AS charity_percent_10, c0_.is_sold AS is_sold_11, c0_.allows_print AS allows_print_12, c0_.accepts_offers AS accepts_offers_13, c0_.payload AS payload_14, c0_.updated_at AS updated_at_15 FROM cached_products c0_ WHERE c0_.seller_slug = ? AND c0_.is_sold = 1 ORDER BY c0_.updated_at DESC LIMIT 6
Parameters: [
"artist-22"
]
SELECT c0_.slug AS slug_0, c0_.id AS id_1, c0_.title AS title_2, c0_.price_cents AS price_cents_3, c0_.old_price_cents AS old_price_cents_4, c0_.seller_slug AS seller_slug_5, c0_.seller_name AS seller_name_6, c0_.seller_country AS seller_country_7, c0_.category_slug AS category_slug_8, c0_.primary_image_url AS primary_image_url_9, c0_.charity_percent AS charity_percent_10, c0_.is_sold AS is_sold_11, c0_.allows_print AS allows_print_12, c0_.accepts_offers AS accepts_offers_13, c0_.payload AS payload_14, c0_.updated_at AS updated_at_15 FROM cached_products c0_ WHERE c0_.seller_slug = 'artist-22' AND c0_.is_sold = 1 ORDER BY c0_.updated_at DESC LIMIT 6;
|