Error 500 Internal Server Error

POST http://dev-cleanfy.cozystay.com/graphql/

Forwarded to ErrorController (63e3ac)

Query Metrics

18 Database Queries
10 Different statements
799.91 ms Query time
0 Invalid entities
4 Managed entities

Queries

Group similar statements

# Time Info
1 47.08 ms
SELECT t0.id AS id_1, t0.account_id AS account_id_2, t0.expires_in AS expires_in_3, t0.token AS token_4, t0.created_at AS created_at_5 FROM access_token t0 WHERE t0.token = ? LIMIT 1
Parameters:
[
  "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NzQyODYzODAsImV4cCI6MTc3NTU4MjM4MCwicm9sZXMiOlsiUk9MRV9NRU1CRVIiXSwidXNlcm5hbWUiOiJ0ZWNoQGNvenlzdGF5LmNvbSJ9.nl5mkwc7BcIs56d7T23hQDhBQTvaRlUaT_fUmhlleh9D8X3CKLDTClWhPu_ZMfq8hVkGuZkcYl1sCumIDBInKy-HTkdxYiKQP4If5dwHaMYFQl2BoOr9QuP01QK5q3HZk9Z_yhXywUvAufp7MzlPv5-coDhka4FFJ4MwJ7hWfT-M5QRv7k9qgAnPiyjkTiQsVgJ-M4zV-fMP75tQ1aHUbIOetsN_v5OFDXqgFCj0cr86jR6n7ZKGuSq8zJ8jL7PiQkpbMVEdyyEwcpyZmIY1h2fC98zDTQPWywHK3WeGXb6Ukcmb18kiR6Ofog8CbEDNA7hS6uPyWcKzgIoU6TrOjg"
]
2 43.74 ms
SELECT t0.id AS id_1, t0.email AS email_2, t0.full_name AS full_name_3, t0.password AS password_4, t0.is_active AS is_active_5, t0.created_at AS created_at_6, t0.contact_info AS contact_info_7, t0.timezone AS timezone_8, t0.current_company_id AS current_company_id_9, t0.current_team_id AS current_team_id_10 FROM account t0 WHERE t0.id = ? LIMIT 1
Parameters:
[
  1
]
3 39.77 ms
SELECT t0.id AS id_1, t0.email AS email_2, t0.full_name AS full_name_3, t0.password AS password_4, t0.is_active AS is_active_5, t0.created_at AS created_at_6, t0.contact_info AS contact_info_7, t0.timezone AS timezone_8, t0.current_company_id AS current_company_id_9, t0.current_team_id AS current_team_id_10 FROM account t0 WHERE t0.id = ? LIMIT 1
Parameters:
[
  1
]
4 40.55 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
5 55.73 ms
SELECT quote_ident(table_name) AS table_name,
       table_schema AS schema_name
FROM information_schema.tables
WHERE table_catalog = ?
  AND table_schema NOT LIKE 'pg\_%'
  AND table_schema != 'information_schema'
  AND table_name != 'geometry_columns'
  AND table_name != 'spatial_ref_sys'
  AND table_type = 'BASE TABLE'
ORDER BY
  quote_ident(table_name)
Parameters:
[
  "postgres"
]
6 39.70 ms
SELECT current_schema()
Parameters:
[]
7 39.19 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
8 47.20 ms
SELECT quote_ident(table_name) AS table_name,
       table_schema AS schema_name
FROM information_schema.tables
WHERE table_catalog = ?
  AND table_schema NOT LIKE 'pg\_%'
  AND table_schema != 'information_schema'
  AND table_name != 'geometry_columns'
  AND table_name != 'spatial_ref_sys'
  AND table_type = 'BASE TABLE'
ORDER BY
  quote_ident(table_name)
Parameters:
[
  "postgres"
]
9 40.20 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
10 75.41 ms
SELECT quote_ident(n.nspname)               AS schema_name,
       quote_ident(c.relname)               AS table_name,
       quote_ident(a.attname)               AS field,
       t.typname                            AS type,
       format_type(a.atttypid, a.atttypmod) AS complete_type,
       bt.typname                           AS domain_type,
       format_type(bt.oid, t.typtypmod)     AS domain_complete_type,
       a.attnotnull                         AS isnotnull,
       a.attidentity,
       (    SELECT
        CASE
            WHEN a.attgenerated = 's' THEN NULL
            ELSE pg_get_expr(adbin, adrelid)
        END
     FROM pg_attrdef
     WHERE c.oid = pg_attrdef.adrelid
        AND pg_attrdef.adnum=a.attnum)                                 AS "default",
       dsc.description                      AS comment,
       CASE
           WHEN coll.collprovider = 'c'
               THEN coll.collcollate
           WHEN coll.collprovider = 'd'
               THEN NULL
           ELSE coll.collname
           END                              AS collation
FROM pg_attribute a
         JOIN pg_class c
              ON c.oid = a.attrelid
         JOIN pg_namespace n
              ON n.oid = c.relnamespace
         JOIN pg_type t
              ON t.oid = a.atttypid
         LEFT JOIN pg_type bt
                   ON t.typtype = 'd'
                       AND bt.oid = t.typbasetype
         LEFT JOIN pg_collation coll
                   ON coll.oid = a.attcollation
         LEFT JOIN pg_depend dep
                   ON dep.objid = c.oid
                       AND dep.deptype = 'e'
                       AND dep.classid = (SELECT oid FROM pg_class WHERE relname = 'pg_class')
         LEFT JOIN pg_description dsc
                   ON dsc.objoid = c.oid AND dsc.objsubid = a.attnum
         LEFT JOIN pg_inherits i
                   ON i.inhrelid = c.oid
         LEFT JOIN pg_class p
                   ON i.inhparent = p.oid
                       AND p.relkind = 'p'
WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
  -- 'r' for regular tables - 'p' for partitioned tables
  AND c.relkind IN ('r', 'p')
  AND a.attnum > 0
  AND dep.refobjid IS NULL
  -- exclude partitions (tables that inherit from partitioned tables)
  AND p.oid IS NULL
ORDER BY n.nspname,
    c.relname,
    a.attnum
Parameters:
[
  "doctrine_migration_versions"
]
11 39.39 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
12 45.48 ms
SELECT
       quote_ident(n.nspname) AS schema_name,
       quote_ident(c.relname) AS table_name,
       quote_ident(ic.relname) AS relname,
       i.indisunique,
       i.indisprimary,
       i.indkey,
       i.indrelid,
       pg_get_expr(indpred, indrelid) AS "where",
       quote_ident(attname) AS attname
  FROM pg_index i
       JOIN pg_class AS c ON c.oid = i.indrelid
       JOIN pg_namespace n ON n.oid = c.relnamespace
       JOIN pg_class AS ic ON ic.oid = i.indexrelid
       JOIN LATERAL UNNEST(i.indkey) WITH ORDINALITY AS keys(attnum, ord)
            ON TRUE
       JOIN pg_attribute a
            ON a.attrelid = c.oid
                AND a.attnum = keys.attnum
 WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
 ORDER BY 1, 2, keys.ord;
Parameters:
[
  "doctrine_migration_versions"
]
13 39.85 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
14 42.81 ms
SELECT
          quote_ident(tn.nspname) AS schema_name,
          quote_ident(tc.relname) AS table_name,
          quote_ident(r.conname) as conname,
          pg_get_constraintdef(r.oid, true) as condef,
          r.condeferrable,
          r.condeferred
          FROM pg_constraint r
              JOIN pg_class AS tc ON tc.oid = r.conrelid
              JOIN pg_namespace tn ON tn.oid = tc.relnamespace
          WHERE r.conrelid IN
          (
              SELECT c.oid
              FROM pg_class c
                JOIN pg_namespace n
                    ON n.oid = c.relnamespace
                WHERE n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast'))
          AND r.contype = 'f'
          ORDER BY 1, 2
Parameters:
[
  "doctrine_migration_versions"
]
15 40.13 ms
SELECT CURRENT_DATABASE()
Parameters:
[]
16 42.68 ms
SELECT quote_ident(n.nspname) AS schema_name,
       quote_ident(c.relname) AS table_name,
       CASE c.relpersistence WHEN 'u' THEN true ELSE false END as unlogged,
       obj_description(c.oid, 'pg_class') AS comment
FROM pg_class c
     INNER JOIN pg_namespace n
         ON n.oid = c.relnamespace
WHERE
      c.relkind = 'r'
  AND n.nspname = ANY(current_schemas(false)) AND c.relname = ? AND n.nspname NOT IN ('pg_catalog', 'information_schema', 'pg_toast')
Parameters:
[
  "doctrine_migration_versions"
]
17 40.49 ms
SELECT * FROM doctrine_migration_versions
Parameters:
[]
18 40.51 ms
SELECT CURRENT_DATABASE()
Parameters:
[]

Database Connections

Name Service
default doctrine.dbal.default_connection

Entity Managers

Name Service
default doctrine.orm.default_entity_manager

Second Level Cache

Second Level Cache is not enabled.

Managed Entities

default entity manager

Class Amount of managed objects
App\Entity\AccessToken 1
App\Entity\Account 1
App\Entity\Company 1
App\Entity\Team 1

Entities Mapping

Class Mapping errors
App\Entity\AccessToken No errors.
App\Entity\Account No errors.
App\Entity\Company No errors.
App\Entity\Team No errors.
App\Entity\AccountRole No errors.