1 |
3.85 ms |
SELECT id, slug, name, abbreviation, description, number_of_items FROM shop.available_catalog_categories WHERE slug = ? LIMIT 1
Parameters: [
"odpadova-voda/cerpadla"
]
SELECT id, slug, name, abbreviation, description, number_of_items FROM shop.available_catalog_categories WHERE slug = 'odpadova-voda/cerpadla' LIMIT 1;
|
2 |
1.63 ms |
SELECT slug, name FROM shop.available_catalogs
SELECT slug, name FROM shop.available_catalogs;
|
3 |
1.79 ms |
SELECT t0.count AS count_1, t0.id AS id_2, t0.total_price_amount AS total_price_amount_3, t0.total_price_currency AS total_price_currency_4 FROM domain.carts t0 WHERE t0.id = ?
Parameters: [
"98416597-858a-4a0a-ac7e-afdea2b3186b"
]
SELECT t0.count AS count_1, t0.id AS id_2, t0.total_price_amount AS total_price_amount_3, t0.total_price_currency AS total_price_currency_4 FROM domain.carts t0 WHERE t0.id = '98416597-858a-4a0a-ac7e-afdea2b3186b';
|
4 |
1.29 ms |
SELECT t0.count AS count_1, t0.id AS id_2, t0.total_price_amount AS total_price_amount_3, t0.total_price_currency AS total_price_currency_4 FROM domain.carts t0 WHERE t0.id = ?
Parameters: [
"98416597-858a-4a0a-ac7e-afdea2b3186b"
]
SELECT t0.count AS count_1, t0.id AS id_2, t0.total_price_amount AS total_price_amount_3, t0.total_price_currency AS total_price_currency_4 FROM domain.carts t0 WHERE t0.id = '98416597-858a-4a0a-ac7e-afdea2b3186b';
|
5 |
1.87 ms |
SELECT * FROM public.cart_items WHERE cart_id = ? ORDER BY product_id ASC LIMIT 999
SELECT * FROM public.cart_items WHERE cart_id = '98416597-858a-4a0a-ac7e-afdea2b3186b' ORDER BY product_id ASC LIMIT 999;
|
6 |
1.40 ms |
SELECT name, category_id FROM shop.products WHERE id = ?
SELECT name, category_id FROM shop.products WHERE id = '358d7864-59ef-4723-8c4b-72eaaffe8f2b';
|
7 |
1.16 ms |
SELECT abbreviation, slug, parent_id FROM shop.catalog_categories WHERE id = ?
SELECT abbreviation, slug, parent_id FROM shop.catalog_categories WHERE id = '358d7864-59ef-4723-8c4b-72eaaffe8f2b';
|
8 |
1.23 ms |
SELECT abbreviation, slug, parent_id FROM shop.catalog_categories WHERE parent_id = ? and id <> ? ORDER BY position ASC LIMIT 20
SELECT abbreviation, slug, parent_id FROM shop.catalog_categories WHERE parent_id = '0bfc16f3-0547-409d-bfc7-d2c5f2ef6d35' and id <> '358d7864-59ef-4723-8c4b-72eaaffe8f2b' ORDER BY position ASC LIMIT 20;
|
9 |
1.03 ms |
SELECT abbreviation, slug, parent_id FROM shop.catalog_categories WHERE id = ?
SELECT abbreviation, slug, parent_id FROM shop.catalog_categories WHERE id = '0bfc16f3-0547-409d-bfc7-d2c5f2ef6d35';
|
10 |
1.02 ms |
SELECT name, slug FROM shop.catalogs WHERE id = ?
SELECT name, slug FROM shop.catalogs WHERE id = '0bfc16f3-0547-409d-bfc7-d2c5f2ef6d35';
|
11 |
1.03 ms |
SELECT name, slug FROM shop.catalogs WHERE id <> ? ORDER BY position ASC LIMIT 20
SELECT name, slug FROM shop.catalogs WHERE id <> '0bfc16f3-0547-409d-bfc7-d2c5f2ef6d35' ORDER BY position ASC LIMIT 20;
|
12 |
1.72 ms |
SELECT slug, abbreviation, number_of_items FROM shop.visible_catalog_categories WHERE parent_id = ? ORDER BY position ASC
SELECT slug, abbreviation, number_of_items FROM shop.visible_catalog_categories WHERE parent_id = '358d7864-59ef-4723-8c4b-72eaaffe8f2b' ORDER BY position ASC;
|
13 |
1.80 ms |
SELECT slug, name, image, price_original_incl_vat, price_current_incl_vat, at_discount FROM shop.best_sellers WHERE category_id = ? LIMIT 3
SELECT slug, name, image, price_original_incl_vat, price_current_incl_vat, at_discount FROM shop.best_sellers WHERE category_id = '358d7864-59ef-4723-8c4b-72eaaffe8f2b' LIMIT 3;
|
14 |
1.42 ms |
SELECT id, name, slug, image, price_current_incl_vat, price_original_incl_vat, price_currency, stock_status, at_discount, available_for_purchase_online FROM shop.visible_catalog_items WHERE category_id = ?
SELECT id, name, slug, image, price_current_incl_vat, price_original_incl_vat, price_currency, stock_status, at_discount, available_for_purchase_online FROM shop.visible_catalog_items WHERE category_id = '358d7864-59ef-4723-8c4b-72eaaffe8f2b';
|