Error 404 Not Found

GET http://pocshopi.prestarocket.com/aws/credentials

Forwarded to ErrorController (e4a207)

Exceptions

No route found for "GET http://pocshopi.prestarocket.com/aws/credentials"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#522
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/pocshopi.prestarocket.com/htdocs/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/aws/credentials/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. public function matchRequest(Request $request): array
  2. {
  3. $this->request = $request;
  4. $ret = $this->match($request->getPathInfo());
  5. $this->request = null;
  6. return $ret;
  7. }
in vendor/symfony/routing/Router.php -> matchRequest (line 190)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
  2. $e = $this->stopwatch->start($this->name, 'event_listener');
  3. try {
  4. ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
  5. } finally {
  6. if ($e->isStarted()) {
  7. $e->stop();
  8. }
  9. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. try {
  2. $this->beforeDispatch($eventName, $event);
  3. try {
  4. $e = $this->stopwatch->start($eventName, 'section');
  5. try {
  6. $this->dispatcher->dispatch($event, $eventName);
  7. } finally {
  8. if ($e->isStarted()) {
  9. $e->stop();
  10. }
  11. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/pocshopi.prestarocket.com/htdocs/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 15:35:51 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "12e9e8"
    },
    "request_uri": "https://pocshopi.prestarocket.com/_profiler/12e9e8",
    "method": "GET"
}
INFO 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Beginning transaction
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 doctrine Committing transaction
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:35:51 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 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "App\EventListener\ShopifyContextInitializer::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ShopifyContextInitializer::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 15:35:51 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:35:51 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 event Notified event "kernel.controller_arguments" to listener "ContainerMNWwBP5\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerMNWwBP5\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 15:35:51 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 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:35:51 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 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "App\EventListener\ShopifyContextInitializer::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ShopifyContextInitializer::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 15:35:51 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 15:35:51 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:35:51 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 event Notified event "kernel.controller_arguments" to listener "ContainerMNWwBP5\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerMNWwBP5\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 15:35:51 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 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 15:35:51 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 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 15:35:51 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 15:35:51 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 15:35:51 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 15:35:51 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 15:35:51 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 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 15:35:52 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 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "App\EventListener\ShopifyContextInitializer::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\ShopifyContextInitializer::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 15:35:52 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 15:35:52 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 15:35:52 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 15:35:52 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 15:35:52 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 15:35:52 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 15:35:52 event Notified event "kernel.controller_arguments" to listener "ContainerMNWwBP5\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerMNWwBP5\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 15:35:52 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/credentials"

  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/credentials/".

  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)