Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#522 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {
$message .= sprintf(' (from "%s")', $referer);
}
throw new NotFoundHttpException($message, $e);
} catch (MethodNotAllowedException $e) {
$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 122)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/pocshopi.prestarocket.com/htdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {
goto redirect_scheme;
}
}
throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
}
private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
{
$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 89)
public function matchRequest(Request $request): array
{
$this->request = $request;
$ret = $this->match($request->getPathInfo());
$this->request = null;
return $ret;
}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 190)
if (!$matcher instanceof RequestMatcherInterface) {
// fallback to the default UrlMatcherInterface
return $matcher->match($request->getPathInfo());
}
return $matcher->matchRequest($request);
}
/**
* Gets the UrlMatcher or RequestMatcher instance associated with this Router.
*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 122)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
$response = null;
try {
return $response = $this->handleRaw($request, $type);
} catch (\Throwable $e) {
if ($e instanceof \Error && !$this->handleAllThrowables) {
throw $e;
}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
if (Kernel::VERSION_ID >= 60400) {
$response->send(false);
if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/pocshopi.prestarocket.com/htdocs/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 18:24:02 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "f7dfef" }, "request_uri": "https://pocshopi.prestarocket.com/_profiler/f7dfef?panel=exception&type=request", "method": "GET" } |
INFO 18:24:02 | doctrine |
Connecting with parameters {params} { "params": { "use_savepoints": true, "driver": "pdo_mysql", "idle_connection_ttl": 600, "host": "127.0.0.1", "port": 3306, "user": "pocshopi-dfda32", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": { "collation": "utf8mb4_unicode_ci" }, "dbname": "pocshopi-prestarocket-com", "charset": "utf8mb4" } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824669474931 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518572236915 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine | Beginning transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518572236915, "2": 7824669474931, "3": "2024-11-08 09:10:57", "4": "2025-01-07 08:13:40", "5": 44543956320371, "6": "42518572236915" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine | Committing transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824669769843 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573023347 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine | Beginning transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573023347, "2": 7824669769843, "3": "2024-11-08 09:11:10", "4": "2024-11-08 09:11:12", "5": 44543957106803, "6": "42518573023347" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine | Committing transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824669835379 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573318259 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine | Beginning transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573318259, "2": 7824669835379, "3": "2024-11-08 09:11:16", "4": "2024-11-08 09:11:21", "5": 44543957401715, "6": "42518573318259" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine | Committing transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7781782880371 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42337952202867 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42337952235635 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine | Beginning transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42337952202867, "2": 7781782880371, "3": "2024-09-25 15:17:31", "4": "2024-09-25 15:17:31", "5": 44363228348531, "6": "42337952202867" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42337952235635, "2": 7781782880371, "3": "2024-09-25 15:17:31", "4": "2024-09-25 15:17:31", "5": 44363228381299, "6": "42337952235635" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine | Committing transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430415475 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747650163 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747682931 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747715699 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747748467 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine | Beginning transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747650163, "2": 7581430415475, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230707315, "6": "41786747650163" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747682931, "2": 7581430415475, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230740083, "6": "41786747682931" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747715699, "2": 7581430415475, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230772851, "6": "41786747715699" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747748467, "2": 7581430415475, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230805619, "6": "41786747748467" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine | Committing transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824669540467 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518572466291 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518572499059 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518572531827 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine | Beginning transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518572466291, "2": 7824669540467, "3": "2024-11-08 09:11:03", "4": "2024-11-08 09:11:03", "5": 44543956549747, "6": "42518572466291" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518572499059, "2": 7824669540467, "3": "2024-11-08 09:11:03", "4": "2024-11-08 09:11:03", "5": 44543956582515, "6": "42518572499059" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518572531827, "2": 7824669540467, "3": "2024-11-08 09:11:03", "4": "2024-11-08 09:11:03", "5": 44543956615283, "6": "42518572531827" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:02 | doctrine | Committing transaction |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824668786803 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518569877619 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518569910387 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518569943155 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518569975923 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518570008691 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518570041459 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518570074227 }, "types": { "1": 2 } } |
DEBUG 18:24:02 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518570106995 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518569877619, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:49", "5": 44543953961075, "6": "42518569877619" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518569910387, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:49", "5": 44543953993843, "6": "42518569910387" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518569943155, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:36", "5": 44543954026611, "6": "42518569943155" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518569975923, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:49", "5": 44543954059379, "6": "42518569975923" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518570008691, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:41", "5": 44543954092147, "6": "42518570008691" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518570041459, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:50", "5": 44543954124915, "6": "42518570041459" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518570074227, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:49", "5": 44543954157683, "6": "42518570074227" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518570106995, "2": 7824668786803, "3": "2024-11-08 09:10:31", "4": "2024-11-08 09:10:49", "5": 44543954190451, "6": "42518570106995" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824669376627 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518571778163 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518571778163, "2": 7824669376627, "3": "2024-11-08 09:10:51", "4": "2024-11-08 09:10:56", "5": 44543955861619, "6": "42518571778163" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430743155 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748239987 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748272755 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748305523 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748239987, "2": 7581430743155, "3": "2024-05-13 14:13:14", "4": "2024-11-24 02:37:36", "5": 43832231297139, "6": "41786748239987" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748272755, "2": 7581430743155, "3": "2024-05-13 14:13:14", "4": "2024-05-13 14:13:14", "5": 43832231329907, "6": "41786748272755" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748305523, "2": 7581430743155, "3": "2024-05-13 14:13:14", "4": "2024-05-13 14:13:14", "5": 43832231362675, "6": "41786748305523" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430612083 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748108915 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748108915, "2": 7581430612083, "3": "2024-05-13 14:13:11", "4": "2024-05-13 14:13:17", "5": 43832231166067, "6": "41786748108915" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430251635 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41791917097075 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41791917129843 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41791917097075, "2": 7581430251635, "3": "2024-05-14 01:33:43", "4": "2024-05-14 01:33:43", "5": 43837348184179, "6": "41791917097075" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41791917129843, "2": 7581430251635, "3": "2024-05-14 01:33:43", "4": "2024-05-14 01:33:43", "5": 43837348216947, "6": "41791917129843" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430284403 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747551859 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747551859, "2": 7581430284403, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230609011, "6": "41786747551859" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430710387 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748207219 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748207219, "2": 7581430710387, "3": "2024-05-13 14:13:13", "4": "2024-05-13 14:13:13", "5": 43832231264371, "6": "41786748207219" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430644851 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748141683 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748141683, "2": 7581430644851, "3": "2024-05-13 14:13:12", "4": "2024-05-13 14:13:12", "5": 43832231198835, "6": "41786748141683" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430546547 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748043379 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748043379, "2": 7581430546547, "3": "2024-05-13 14:13:11", "4": "2024-05-13 14:13:11", "5": 43832231100531, "6": "41786748043379" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430382707 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747846771 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747879539 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747912307 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747945075 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747977843 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747846771, "2": 7581430382707, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230903923, "6": "41786747846771" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747879539, "2": 7581430382707, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230936691, "6": "41786747879539" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747912307, "2": 7581430382707, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230969459, "6": "41786747912307" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747945075, "2": 7581430382707, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832231002227, "6": "41786747945075" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747977843, "2": 7581430382707, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832231034995, "6": "41786747977843" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430317171 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747584627 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747584627, "2": 7581430317171, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230641779, "6": "41786747584627" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430349939 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747617395 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747617395, "2": 7581430349939, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230674547, "6": "41786747617395" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430481011 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747781235 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747781235, "2": 7581430481011, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230838387, "6": "41786747781235" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430186099 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747453555 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747453555, "2": 7581430186099, "3": "2024-05-13 14:13:09", "4": "2024-05-13 14:13:09", "5": 43832230510707, "6": "41786747453555" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430513779 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748010611 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748010611, "2": 7581430513779, "3": "2024-05-13 14:13:11", "4": "2024-05-25 02:31:15", "5": 43832231067763, "6": "41786748010611" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430579315 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786748076147 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786748076147, "2": 7581430579315, "3": "2024-05-13 14:13:11", "4": "2024-05-13 14:13:26", "5": 43832231133299, "6": "41786748076147" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430448243 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747814003 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747814003, "2": 7581430448243, "3": "2024-05-13 14:13:10", "4": "2024-05-13 14:13:10", "5": 43832230871155, "6": "41786747814003" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7581430218867 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 41786747486323 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 41786747486323, "2": 7581430218867, "3": "2024-05-13 14:13:09", "4": "2024-05-13 14:13:09", "5": 43832230543475, "6": "41786747486323" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.title AS title_2, t0.vendor AS vendor_3, t0.product_type AS product_type_4, t0.price AS price_5, t0.inventory_quantity AS inventory_quantity_6, t0.status AS status_7 FROM shopify_product t0 WHERE t0.id = ?", "params": { "1": 7824669933683 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573613171 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573645939 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573678707 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573711475 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573744243 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573777011 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573809779 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573842547 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573875315 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573908083 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573940851 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.product_id AS product_id_2, t0.title AS title_3, t0.price AS price_4, t0.position AS position_5, t0.inventory_policy AS inventory_policy_6, t0.compare_at_price AS compare_at_price_7, t0.option1 AS option1_8, t0.option2 AS option2_9, t0.option3 AS option3_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.taxable AS taxable_13, t0.barcode AS barcode_14, t0.fulfillment_service AS fulfillment_service_15, t0.grams AS grams_16, t0.inventory_management AS inventory_management_17, t0.requires_shipping AS requires_shipping_18, t0.sku AS sku_19, t0.weight AS weight_20, t0.weight_unit AS weight_unit_21, t0.inventory_item_id AS inventory_item_id_22, t0.inventory_quantity AS inventory_quantity_23, t0.old_inventory_quantity AS old_inventory_quantity_24, t0.admin_graphql_api_id AS admin_graphql_api_id_25, t0.image_id AS image_id_26 FROM shopify_product_variant t0 WHERE t0.id = ?", "params": { "1": 42518573973619 }, "types": { "1": 2 } } |
DEBUG 18:24:03 | doctrine | Beginning transaction |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573613171, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:25", "5": 44543957696627, "6": "42518573613171" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573645939, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:26", "5": 44543957729395, "6": "42518573645939" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573678707, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:27", "5": 44543957762163, "6": "42518573678707" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573711475, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:28", "5": 44543957794931, "6": "42518573711475" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573744243, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:28", "5": 44543957827699, "6": "42518573744243" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573777011, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:29", "5": 44543957860467, "6": "42518573777011" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573809779, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:30", "5": 44543957893235, "6": "42518573809779" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573842547, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:31", "5": 44543957926003, "6": "42518573842547" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573875315, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:32", "5": 44543957958771, "6": "42518573875315" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573908083, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:33", "5": 44543957991539, "6": "42518573908083" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573940851, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:34", "5": 44543958024307, "6": "42518573940851" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine |
Executing statement: UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ? (parameters: {params}, types: {types}) { "sql": "UPDATE shopify_product_variant SET id = ?, product_id = ?, created_at = ?, updated_at = ?, inventory_item_id = ? WHERE id = ?", "params": { "1": 42518573973619, "2": 7824669933683, "3": "2024-11-08 09:11:23", "4": "2024-11-08 09:11:35", "5": 44543958057075, "6": "42518573973619" }, "types": { "1": 2, "2": 2, "3": 2, "4": 2, "5": 2, "6": 2 } } |
DEBUG 18:24:03 | doctrine | Committing transaction |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopifyContextInitializer::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopifyContextInitializer::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerMNWwBP5\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerMNWwBP5\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopifyContextInitializer::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopifyContextInitializer::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerMNWwBP5\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerMNWwBP5\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 18:24:03 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "App\EventListener\ShopifyContextInitializer::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\ShopifyContextInitializer::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerMNWwBP5\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerMNWwBP5\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments" } |
DEBUG 18:24:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
Stack Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "GET http://pocshopi.prestarocket.com/.aws/config" at vendor/symfony/http-kernel/EventListener/RouterListener.php:149 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:206) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:159) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:182) at Symfony\Component\HttpKernel\Kernel->handle() (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/pocshopi.prestarocket.com/htdocs/vendor/autoload_runtime.php') (public/index.php:5) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: No routes found for "/.aws/config/". at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70 at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match() (vendor/symfony/routing/Matcher/UrlMatcher.php:89) at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest() (vendor/symfony/routing/Router.php:190) at Symfony\Component\Routing\Router->matchRequest() (vendor/symfony/http-kernel/EventListener/RouterListener.php:101) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:206) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:56) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:159) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:76) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:182) at Symfony\Component\HttpKernel\Kernel->handle() (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:29) at require_once('/var/www/pocshopi.prestarocket.com/htdocs/vendor/autoload_runtime.php') (public/index.php:5) |