Error 500 Internal Server Error

PATCH http://127.0.0.1:5000/api/users/me

Forwarded to MainController (4e0096)

Exceptions

Could not convert database value "me" to Doctrine Type uuid

Exceptions 2

Doctrine\DBAL\Types\ ConversionException

  1. */
  2. public static function conversionFailed($value, $toType, ?Throwable $previous = null)
  3. {
  4. $value = strlen($value) > 32 ? substr($value, 0, 20) . '...' : $value;
  5. return new self('Could not convert database value "' . $value . '" to Doctrine Type ' . $toType, 0, $previous);
  6. }
  7. /**
  8. * Thrown when a Database to Doctrine Type Conversion fails and we can make a statement
  9. * about the expected format.
  1. }
  2. private function throwValueNotConvertible(mixed $value, \Throwable $previous): never
  3. {
  4. if (!class_exists(ValueNotConvertible::class)) {
  5. throw ConversionException::conversionFailed($value, $this->getName(), $previous);
  6. }
  7. throw ValueNotConvertible::new($value, $this->getName(), null, $previous);
  8. }
  9. }
in vendor/symfony/doctrine-bridge/Types/AbstractUidType.php -> throwValueNotConvertible (line 82)
  1. }
  2. try {
  3. return $this->getUidClass()::fromString($value)->$toString();
  4. } catch (\InvalidArgumentException $e) {
  5. $this->throwValueNotConvertible($value, $e);
  6. }
  7. }
  8. public function requiresSQLCommentHint(AbstractPlatform $platform): bool
  9. {
in vendor/doctrine/dbal/src/Connection.php -> convertToDatabaseValue (line 1887)
  1. if (is_string($type)) {
  2. $type = Type::getType($type);
  3. }
  4. if ($type instanceof Type) {
  5. $value = $type->convertToDatabaseValue($value, $this->getDatabasePlatform());
  6. $bindingType = $type->getBindingType();
  7. } else {
  8. $bindingType = $type ?? ParameterType::STRING;
  9. }
in vendor/doctrine/dbal/src/Connection.php -> getBindingInfo (line 1828)
  1. $bindIndex = 1;
  2. foreach ($params as $key => $value) {
  3. if (isset($types[$key])) {
  4. $type = $types[$key];
  5. [$value, $bindingType] = $this->getBindingInfo($value, $type);
  6. } else {
  7. if (array_key_exists($key, $types)) {
  8. Deprecation::trigger(
  9. 'doctrine/dbal',
  10. 'https://github.com/doctrine/dbal/pull/5550',
in vendor/doctrine/dbal/src/Connection.php -> bindParameters (line 1102)
  1. [$sql, $params, $types] = $this->expandArrayParameters($sql, $params, $types);
  2. }
  3. $stmt = $connection->prepare($sql);
  4. $this->bindParameters($stmt, $params, $types);
  5. $result = $stmt->execute();
  6. } else {
  7. $result = $connection->query($sql);
  8. }
  1. /**
  2. * {@inheritDoc}
  3. */
  4. public function execute(Connection $conn, array $params, array $types): Result
  5. {
  6. return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);
  7. }
  8. }
in vendor/doctrine/orm/src/Query.php -> execute (line 296)
  1. $sqlParams,
  2. $types,
  3. $this->em->getConnection()->getParams(),
  4. );
  5. return $executor->execute($this->em->getConnection(), $sqlParams, $types);
  6. }
  7. /**
  8. * @param array<string,mixed> $sqlParams
  9. * @param array<string,Type> $types
  1. $setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
  2. $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3. };
  4. }
  5. $stmt = $this->_doExecute();
  6. if (is_numeric($stmt)) {
  7. $setCacheEntry($stmt);
  8. return $stmt;
in vendor/doctrine/orm/src/AbstractQuery.php -> executeIgnoreQueryCache (line 891)
  1. ): mixed {
  2. if ($this->cacheable && $this->isCacheEnabled()) {
  3. return $this->executeUsingQueryCache($parameters, $hydrationMode);
  4. }
  5. return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
  6. }
  7. /**
  8. * Execute query ignoring second level cache.
  9. *
  1. * @throws NonUniqueResultException
  2. */
  3. public function getOneOrNullResult(string|int|null $hydrationMode = null): mixed
  4. {
  5. try {
  6. $result = $this->execute(null, $hydrationMode);
  7. } catch (NoResultException) {
  8. return null;
  9. }
  10. if ($this->hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
  1. if ($extension instanceof QueryResultItemExtensionInterface && $extension->supportsResult($entityClass, $operation, $context)) {
  2. return $extension->getResult($queryBuilder, $entityClass, $operation, $context);
  3. }
  4. }
  5. return $queryBuilder->getQuery()->getOneOrNullResult();
  6. }
  7. }
  1. }
  2. /** @var ProviderInterface $providerInstance */
  3. $providerInstance = $this->locator->get($provider);
  4. return $providerInstance->provide($operation, $uriVariables, $context);
  5. }
  6. throw new ProviderNotFoundException(\sprintf('Provider not found on operation "%s"', $operation->getName()));
  7. }
  8. }
  1. ]);
  2. $request->attributes->set('_api_normalization_context', $normalizationContext);
  3. }
  4. try {
  5. $data = $this->provider->provide($operation, $uriVariables, $context);
  6. } catch (ProviderNotFoundException $e) {
  7. // In case the dev just forgot to implement it
  8. $this->logger?->debug('No provider registered for {resource_class}', ['resource_class' => $resourceClass]);
  9. $data = null;
  10. }
  1. !($operation instanceof HttpOperation)
  2. || !($request = $context['request'] ?? null)
  3. || 'html' !== $request->getRequestFormat()
  4. || true === ($operation->getExtraProperties()['_api_disable_swagger_provider'] ?? false)
  5. ) {
  6. return $this->decorated->provide($operation, $uriVariables, $context);
  7. }
  8. if (!$request->attributes->has('_api_requested_operation')) {
  9. $request->attributes->set('_api_requested_operation', $operation);
  10. }
  1. default:
  2. $isGranted = $operation->getSecurity();
  3. $message = $operation->getSecurityMessage();
  4. }
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. if (null === $isGranted) {
  7. return $body;
  8. }
  9. // On a GraphQl QueryCollection we want to perform security stage only on the top-level query
  1. {
  2. }
  3. public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
  4. {
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. $request = $context['request'] ?? null;
  7. $operation = $request?->attributes->get('_api_operation') ?? $operation;
  8. $parameters = $operation->getParameters() ?? new Parameters();
  1. // We need request content
  2. if (!$operation instanceof HttpOperation || !($request = $context['request'] ?? null)) {
  3. return $this->decorated?->provide($operation, $uriVariables, $context);
  4. }
  5. $data = $this->decorated ? $this->decorated->provide($operation, $uriVariables, $context) : $request->attributes->get('data');
  6. if (!$operation->canDeserialize() || $context['request']->attributes->has('deserialized')) {
  7. return $data;
  8. }
  1. default:
  2. $isGranted = $operation->getSecurity();
  3. $message = $operation->getSecurityMessage();
  4. }
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. if (null === $isGranted) {
  7. return $body;
  8. }
  9. // On a GraphQl QueryCollection we want to perform security stage only on the top-level query
  1. {
  2. }
  3. public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
  4. {
  5. $body = $this->decorated?->provide($operation, $uriVariables, $context) ?? ($context['request'] ?? null)?->attributes->get('data');
  6. if ($body instanceof Response || !$body) {
  7. return $body;
  8. }
  1. default:
  2. $isGranted = $operation->getSecurity();
  3. $message = $operation->getSecurityMessage();
  4. }
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. if (null === $isGranted) {
  7. return $body;
  8. }
  9. // On a GraphQl QueryCollection we want to perform security stage only on the top-level query
  1. if (0 !== \count($constraintViolationList)) {
  2. throw new ValidationException($constraintViolationList);
  3. }
  4. return $this->decorated->provide($operation, $uriVariables, $context);
  5. }
  6. // There's a `property` inside Parameter but it's used for hydra:search only as here we want the parameter name instead
  7. private function getProperty(Parameter $parameter, ConstraintViolationInterface $violation): string
  8. {
  1. $request?->attributes->set('_api_operation', $operation);
  2. $context['operation'] = $operation;
  3. $this->stopwatch?->stop('api_platform.provider.parameter');
  4. return $this->decorated?->provide($operation, $uriVariables, $context);
  5. }
  6. /**
  7. * TODO: uriVariables could be a Parameters instance, it'd make things easier.
  8. *
  1. $this->addRequestFormats($request, $formats);
  2. $request->attributes->set('input_format', $this->getInputFormat($operation, $request));
  3. $request->setRequestFormat($this->getRequestFormat($request, $formats, !$isErrorOperation));
  4. $this->stopwatch?->stop('api_platform.provider.content_negotiation');
  5. return $this->decorated?->provide($operation, $uriVariables, $context);
  6. }
  7. /**
  8. * Adds the supported formats to the request.
  9. *
  1. || ('PUT' === $method && !($operation->getExtraProperties()['standard_put'] ?? true));
  2. $operation = $operation->withDenormalizationContext($denormalizationContext + [SerializerContextBuilderInterface::ASSIGN_OBJECT_TO_POPULATE => $assignObjectToPopulate]);
  3. }
  4. $body = $this->provider->provide($operation, $uriVariables, $context);
  5. // The provider can change the Operation, extract it again from the Request attributes
  6. if ($request->attributes->get('_api_operation') !== $operation) {
  7. $operation = $this->initializeOperation($request);
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  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/html/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use KiloSierraCharlie\CalendarManager\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\Uid\Exception\ InvalidArgumentException

Invalid UUID: "me".

  1. public function __construct(string $uuid, bool $checkVariant = false)
  2. {
  3. $type = preg_match('{^[0-9a-f]{8}(?:-[0-9a-f]{4}){3}-[0-9a-f]{12}$}Di', $uuid) ? (int) $uuid[14] : false;
  4. if (false === $type || (static::TYPE ?: $type) !== $type) {
  5. throw new InvalidArgumentException(\sprintf('Invalid UUID%s: "%s".', static::TYPE ? 'v'.static::TYPE : '', $uuid));
  6. }
  7. $this->uid = strtolower($uuid);
  8. if ($checkVariant && !\in_array($this->uid[19], ['8', '9', 'a', 'b'], true)) {
in vendor/symfony/uid/Uuid.php -> __construct (line 59)
  1. public static function fromString(string $uuid): static
  2. {
  3. $uuid = self::transformToRfc9562($uuid, self::FORMAT_ALL);
  4. if (__CLASS__ !== static::class || 36 !== \strlen($uuid)) {
  5. return new static($uuid);
  6. }
  7. if (self::NIL === $uuid) {
  8. return new NilUuid();
  9. }
  1. if (!\is_string($value)) {
  2. $this->throwInvalidType($value);
  3. }
  4. try {
  5. return $this->getUidClass()::fromString($value)->$toString();
  6. } catch (\InvalidArgumentException $e) {
  7. $this->throwValueNotConvertible($value, $e);
  8. }
  9. }
in vendor/doctrine/dbal/src/Connection.php -> convertToDatabaseValue (line 1887)
  1. if (is_string($type)) {
  2. $type = Type::getType($type);
  3. }
  4. if ($type instanceof Type) {
  5. $value = $type->convertToDatabaseValue($value, $this->getDatabasePlatform());
  6. $bindingType = $type->getBindingType();
  7. } else {
  8. $bindingType = $type ?? ParameterType::STRING;
  9. }
in vendor/doctrine/dbal/src/Connection.php -> getBindingInfo (line 1828)
  1. $bindIndex = 1;
  2. foreach ($params as $key => $value) {
  3. if (isset($types[$key])) {
  4. $type = $types[$key];
  5. [$value, $bindingType] = $this->getBindingInfo($value, $type);
  6. } else {
  7. if (array_key_exists($key, $types)) {
  8. Deprecation::trigger(
  9. 'doctrine/dbal',
  10. 'https://github.com/doctrine/dbal/pull/5550',
in vendor/doctrine/dbal/src/Connection.php -> bindParameters (line 1102)
  1. [$sql, $params, $types] = $this->expandArrayParameters($sql, $params, $types);
  2. }
  3. $stmt = $connection->prepare($sql);
  4. $this->bindParameters($stmt, $params, $types);
  5. $result = $stmt->execute();
  6. } else {
  7. $result = $connection->query($sql);
  8. }
  1. /**
  2. * {@inheritDoc}
  3. */
  4. public function execute(Connection $conn, array $params, array $types): Result
  5. {
  6. return $conn->executeQuery($this->getSqlStatements(), $params, $types, $this->queryCacheProfile);
  7. }
  8. }
in vendor/doctrine/orm/src/Query.php -> execute (line 296)
  1. $sqlParams,
  2. $types,
  3. $this->em->getConnection()->getParams(),
  4. );
  5. return $executor->execute($this->em->getConnection(), $sqlParams, $types);
  6. }
  7. /**
  8. * @param array<string,mixed> $sqlParams
  9. * @param array<string,Type> $types
  1. $setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
  2. $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3. };
  4. }
  5. $stmt = $this->_doExecute();
  6. if (is_numeric($stmt)) {
  7. $setCacheEntry($stmt);
  8. return $stmt;
in vendor/doctrine/orm/src/AbstractQuery.php -> executeIgnoreQueryCache (line 891)
  1. ): mixed {
  2. if ($this->cacheable && $this->isCacheEnabled()) {
  3. return $this->executeUsingQueryCache($parameters, $hydrationMode);
  4. }
  5. return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
  6. }
  7. /**
  8. * Execute query ignoring second level cache.
  9. *
  1. * @throws NonUniqueResultException
  2. */
  3. public function getOneOrNullResult(string|int|null $hydrationMode = null): mixed
  4. {
  5. try {
  6. $result = $this->execute(null, $hydrationMode);
  7. } catch (NoResultException) {
  8. return null;
  9. }
  10. if ($this->hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
  1. if ($extension instanceof QueryResultItemExtensionInterface && $extension->supportsResult($entityClass, $operation, $context)) {
  2. return $extension->getResult($queryBuilder, $entityClass, $operation, $context);
  3. }
  4. }
  5. return $queryBuilder->getQuery()->getOneOrNullResult();
  6. }
  7. }
  1. }
  2. /** @var ProviderInterface $providerInstance */
  3. $providerInstance = $this->locator->get($provider);
  4. return $providerInstance->provide($operation, $uriVariables, $context);
  5. }
  6. throw new ProviderNotFoundException(\sprintf('Provider not found on operation "%s"', $operation->getName()));
  7. }
  8. }
  1. ]);
  2. $request->attributes->set('_api_normalization_context', $normalizationContext);
  3. }
  4. try {
  5. $data = $this->provider->provide($operation, $uriVariables, $context);
  6. } catch (ProviderNotFoundException $e) {
  7. // In case the dev just forgot to implement it
  8. $this->logger?->debug('No provider registered for {resource_class}', ['resource_class' => $resourceClass]);
  9. $data = null;
  10. }
  1. !($operation instanceof HttpOperation)
  2. || !($request = $context['request'] ?? null)
  3. || 'html' !== $request->getRequestFormat()
  4. || true === ($operation->getExtraProperties()['_api_disable_swagger_provider'] ?? false)
  5. ) {
  6. return $this->decorated->provide($operation, $uriVariables, $context);
  7. }
  8. if (!$request->attributes->has('_api_requested_operation')) {
  9. $request->attributes->set('_api_requested_operation', $operation);
  10. }
  1. default:
  2. $isGranted = $operation->getSecurity();
  3. $message = $operation->getSecurityMessage();
  4. }
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. if (null === $isGranted) {
  7. return $body;
  8. }
  9. // On a GraphQl QueryCollection we want to perform security stage only on the top-level query
  1. {
  2. }
  3. public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
  4. {
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. $request = $context['request'] ?? null;
  7. $operation = $request?->attributes->get('_api_operation') ?? $operation;
  8. $parameters = $operation->getParameters() ?? new Parameters();
  1. // We need request content
  2. if (!$operation instanceof HttpOperation || !($request = $context['request'] ?? null)) {
  3. return $this->decorated?->provide($operation, $uriVariables, $context);
  4. }
  5. $data = $this->decorated ? $this->decorated->provide($operation, $uriVariables, $context) : $request->attributes->get('data');
  6. if (!$operation->canDeserialize() || $context['request']->attributes->has('deserialized')) {
  7. return $data;
  8. }
  1. default:
  2. $isGranted = $operation->getSecurity();
  3. $message = $operation->getSecurityMessage();
  4. }
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. if (null === $isGranted) {
  7. return $body;
  8. }
  9. // On a GraphQl QueryCollection we want to perform security stage only on the top-level query
  1. {
  2. }
  3. public function provide(Operation $operation, array $uriVariables = [], array $context = []): object|array|null
  4. {
  5. $body = $this->decorated?->provide($operation, $uriVariables, $context) ?? ($context['request'] ?? null)?->attributes->get('data');
  6. if ($body instanceof Response || !$body) {
  7. return $body;
  8. }
  1. default:
  2. $isGranted = $operation->getSecurity();
  3. $message = $operation->getSecurityMessage();
  4. }
  5. $body = $this->decorated->provide($operation, $uriVariables, $context);
  6. if (null === $isGranted) {
  7. return $body;
  8. }
  9. // On a GraphQl QueryCollection we want to perform security stage only on the top-level query
  1. if (0 !== \count($constraintViolationList)) {
  2. throw new ValidationException($constraintViolationList);
  3. }
  4. return $this->decorated->provide($operation, $uriVariables, $context);
  5. }
  6. // There's a `property` inside Parameter but it's used for hydra:search only as here we want the parameter name instead
  7. private function getProperty(Parameter $parameter, ConstraintViolationInterface $violation): string
  8. {
  1. $request?->attributes->set('_api_operation', $operation);
  2. $context['operation'] = $operation;
  3. $this->stopwatch?->stop('api_platform.provider.parameter');
  4. return $this->decorated?->provide($operation, $uriVariables, $context);
  5. }
  6. /**
  7. * TODO: uriVariables could be a Parameters instance, it'd make things easier.
  8. *
  1. $this->addRequestFormats($request, $formats);
  2. $request->attributes->set('input_format', $this->getInputFormat($operation, $request));
  3. $request->setRequestFormat($this->getRequestFormat($request, $formats, !$isErrorOperation));
  4. $this->stopwatch?->stop('api_platform.provider.content_negotiation');
  5. return $this->decorated?->provide($operation, $uriVariables, $context);
  6. }
  7. /**
  8. * Adds the supported formats to the request.
  9. *
  1. || ('PUT' === $method && !($operation->getExtraProperties()['standard_put'] ?? true));
  2. $operation = $operation->withDenormalizationContext($denormalizationContext + [SerializerContextBuilderInterface::ASSIGN_OBJECT_TO_POPULATE => $assignObjectToPopulate]);
  3. }
  4. $body = $this->provider->provide($operation, $uriVariables, $context);
  5. // The provider can change the Operation, extract it again from the Request attributes
  6. if ($request->attributes->get('_api_operation') !== $operation) {
  7. $operation = $this->initializeOperation($request);
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  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/html/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use KiloSierraCharlie\CalendarManager\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 Message
info 22:07:48 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "http://calendarmanager.net/_profiler/latest?type=request&url=http%3A%2F%2Fcalendarmanager.net%2Frobots.txt",
    "method": "GET"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
debug 22:07:48 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 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
debug 22:07:48 Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
debug 22:07:48 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 22:07:48 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 22:07:48 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 22:07:48 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 22:07:48 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 22:07:48 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
debug 22:07:48 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] ConversionException
Doctrine\DBAL\Types\ConversionException:
Could not convert database value "me" to Doctrine Type uuid

  at vendor/doctrine/dbal/src/Types/ConversionException.php:37
  at Doctrine\DBAL\Types\ConversionException::conversionFailed('me', 'uuid', object(InvalidArgumentException))
     (vendor/symfony/doctrine-bridge/Types/AbstractUidType.php:108)
  at Symfony\Bridge\Doctrine\Types\AbstractUidType->throwValueNotConvertible('me', object(InvalidArgumentException))
     (vendor/symfony/doctrine-bridge/Types/AbstractUidType.php:82)
  at Symfony\Bridge\Doctrine\Types\AbstractUidType->convertToDatabaseValue('me', object(PostgreSQL120Platform))
     (vendor/doctrine/dbal/src/Connection.php:1887)
  at Doctrine\DBAL\Connection->getBindingInfo('me', object(UuidType))
     (vendor/doctrine/dbal/src/Connection.php:1828)
  at Doctrine\DBAL\Connection->bindParameters(object(Statement), array('me'), array('uuid'))
     (vendor/doctrine/dbal/src/Connection.php:1102)
  at Doctrine\DBAL\Connection->executeQuery('SELECT u0_.id AS id_0, u0_.roles AS roles_1, u0_.password AS password_2, u0_.email_address AS email_address_3, u0_.first_name AS first_name_4, u0_.middle_name AS middle_name_5, u0_.last_name AS last_name_6, u0_.date_created AS date_created_7, u0_.date_last_seen AS date_last_seen_8, u0_.deleted_at AS deleted_at_9 FROM "user" u0_ WHERE u0_.id = ? AND u0_.deleted_at IS NULL', array('me'), array('uuid'), null)
     (vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27)
  at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute(object(Connection), array('me'), array('uuid'))
     (vendor/doctrine/orm/src/Query.php:296)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/src/AbstractQuery.php:935)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null)
     (vendor/doctrine/orm/src/AbstractQuery.php:891)
  at Doctrine\ORM\AbstractQuery->execute(null, null)
     (vendor/doctrine/orm/src/AbstractQuery.php:738)
  at Doctrine\ORM\AbstractQuery->getOneOrNullResult()
     (vendor/api-platform/doctrine-orm/State/ItemProvider.php:89)
  at ApiPlatform\Doctrine\Orm\State\ItemProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => ''))
     (vendor/api-platform/state/CallableProvider.php:43)
  at ApiPlatform\State\CallableProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => ''))
     (vendor/api-platform/state/Provider/ReadProvider.php:84)
  at ApiPlatform\State\Provider\ReadProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => ''))
     (vendor/api-platform/symfony/Bundle/SwaggerUi/SwaggerUiProvider.php:50)
  at ApiPlatform\Symfony\Bundle\SwaggerUi\SwaggerUiProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62)
  at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/SecurityParameterProvider.php:50)
  at ApiPlatform\State\Provider\SecurityParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/DeserializeProvider.php:60)
  at ApiPlatform\State\Provider\DeserializeProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62)
  at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Validator/State/ValidateProvider.php:32)
  at ApiPlatform\Symfony\Validator\State\ValidateProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62)
  at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Validator/State/ParameterValidatorProvider.php:101)
  at ApiPlatform\Symfony\Validator\State\ParameterValidatorProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/ParameterProvider.php:102)
  at ApiPlatform\State\Provider\ParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/ContentNegotiationProvider.php:56)
  at ApiPlatform\State\Provider\ContentNegotiationProvider->provide(object(Patch), array('id' => 'me'), array('request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Controller/MainController.php:94)
  at ApiPlatform\Symfony\Controller\MainController->__invoke(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (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/html/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] InvalidArgumentException
Symfony\Component\Uid\Exception\InvalidArgumentException:
Invalid UUID: "me".

  at vendor/symfony/uid/Uuid.php:44
  at Symfony\Component\Uid\Uuid->__construct('me')
     (vendor/symfony/uid/Uuid.php:59)
  at Symfony\Component\Uid\Uuid::fromString('me')
     (vendor/symfony/doctrine-bridge/Types/AbstractUidType.php:80)
  at Symfony\Bridge\Doctrine\Types\AbstractUidType->convertToDatabaseValue('me', object(PostgreSQL120Platform))
     (vendor/doctrine/dbal/src/Connection.php:1887)
  at Doctrine\DBAL\Connection->getBindingInfo('me', object(UuidType))
     (vendor/doctrine/dbal/src/Connection.php:1828)
  at Doctrine\DBAL\Connection->bindParameters(object(Statement), array('me'), array('uuid'))
     (vendor/doctrine/dbal/src/Connection.php:1102)
  at Doctrine\DBAL\Connection->executeQuery('SELECT u0_.id AS id_0, u0_.roles AS roles_1, u0_.password AS password_2, u0_.email_address AS email_address_3, u0_.first_name AS first_name_4, u0_.middle_name AS middle_name_5, u0_.last_name AS last_name_6, u0_.date_created AS date_created_7, u0_.date_last_seen AS date_last_seen_8, u0_.deleted_at AS deleted_at_9 FROM "user" u0_ WHERE u0_.id = ? AND u0_.deleted_at IS NULL', array('me'), array('uuid'), null)
     (vendor/doctrine/orm/src/Query/Exec/FinalizedSelectExecutor.php:27)
  at Doctrine\ORM\Query\Exec\FinalizedSelectExecutor->execute(object(Connection), array('me'), array('uuid'))
     (vendor/doctrine/orm/src/Query.php:296)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/src/AbstractQuery.php:935)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, null)
     (vendor/doctrine/orm/src/AbstractQuery.php:891)
  at Doctrine\ORM\AbstractQuery->execute(null, null)
     (vendor/doctrine/orm/src/AbstractQuery.php:738)
  at Doctrine\ORM\AbstractQuery->getOneOrNullResult()
     (vendor/api-platform/doctrine-orm/State/ItemProvider.php:89)
  at ApiPlatform\Doctrine\Orm\State\ItemProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => ''))
     (vendor/api-platform/state/CallableProvider.php:43)
  at ApiPlatform\State\CallableProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => ''))
     (vendor/api-platform/state/Provider/ReadProvider.php:84)
  at ApiPlatform\State\Provider\ReadProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User', 'groups' => array('user:read'), 'operation_name' => '_api_/users/{id}{._format}_patch', 'skip_null_values' => true, 'skip_null_to_one_relations' => true, 'iri_only' => false, 'request_uri' => '/api/users/me', 'uri' => 'http://127.0.0.1:5000/api/users/me', 'input' => null, 'output' => null, 'exclude_from_cache_key' => array('root_operation', 'operation', 'object', 'data', 'property_metadata', 'circular_reference_limit_counters', 'debug_trace_id'), 'api_gateway' => false, 'base_url' => '', 'spec_version' => ''))
     (vendor/api-platform/symfony/Bundle/SwaggerUi/SwaggerUiProvider.php:50)
  at ApiPlatform\Symfony\Bundle\SwaggerUi\SwaggerUiProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62)
  at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/SecurityParameterProvider.php:50)
  at ApiPlatform\State\Provider\SecurityParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/DeserializeProvider.php:60)
  at ApiPlatform\State\Provider\DeserializeProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62)
  at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Validator/State/ValidateProvider.php:32)
  at ApiPlatform\Symfony\Validator\State\ValidateProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Security/State/AccessCheckerProvider.php:62)
  at ApiPlatform\Symfony\Security\State\AccessCheckerProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Validator/State/ParameterValidatorProvider.php:101)
  at ApiPlatform\Symfony\Validator\State\ParameterValidatorProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/ParameterProvider.php:102)
  at ApiPlatform\State\Provider\ParameterProvider->provide(object(Patch), array('id' => 'me'), array('operation' => object(Patch), 'request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/state/Provider/ContentNegotiationProvider.php:56)
  at ApiPlatform\State\Provider\ContentNegotiationProvider->provide(object(Patch), array('id' => 'me'), array('request' => object(Request), 'uri_variables' => array('id' => 'me'), 'resource_class' => 'KiloSierraCharlie\\CalendarManager\\Entity\\User'))
     (vendor/api-platform/symfony/Controller/MainController.php:94)
  at ApiPlatform\Symfony\Controller\MainController->__invoke(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (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/html/vendor/autoload_runtime.php')
     (public/index.php:5)