https://prod.golmanagerpanel.com/api/es/player-league/stats/129860?isIos=false&p=api%2Fes%2Fplayer-league%2Fstats%2F129860&version_app=5.0.5

Query Metrics

6 Database Queries
6 Different statements
30.63 ms Query time
10 Invalid entities

Queries

Group similar statements

# Time Info
1 25.70 ms
SELECT
        *
        FROM
        customer_device
        WHERE
            :token LIKE CONCAT(token,'%') AND
            `status` = 0
Parameters:
[
  "token" => "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJpYXQiOjE3NTAyNTc3NTIsImV4cCI6MTc1MDI2MTM1Miwicm9sZXMiOlsiUk9MRV9DVVNUT01FUiJdLCJ1c2VybmFtZSI6ImlnMzMzMzU1QGdtYWlsLmNvbSJ9.SwGTGeTPMvSUAWVM42fpxhWSLcUy3KPr7n-hgKxJmOHgRhBUTBzUe5xtDafSLh_-AQMfEUpzeLNj96s1Lo_vN3k_MnymZemNnJGUR8pjc484xqZw7Bmztj1sF7uI_LtpDj2JXMq_pVTKaMp77S9xEcEQMfzCRUBNNFNgI0IKzsa97oTZVCDv76EZBytd1wqjuVW34eiE_D2DwmjBQ9_4OD_7XwFs-vFLhFywU0pluJGmJm6SgDYGCj1adtu6VDrbLDhgBxfEgY5EolR-CLPRlp-T2oKBXjnhNa9GSeGpU5MSVbWMJY3XQxk7LKvZAYrKpKyXzfO75-iAYWUKhFpen26XlPDJxKb4-GaqlW5pPXtqCBrJcS63gYNgc2MeCdX8Ggi6ZVO-VPbysWmmsN293e66RcsKN1Bo8Fkk7SEX4p4YqnH2Z4pH2DULd5jBuslZqAn9I-gxpoSqyux4GWOwkdRki0qpidHv4l_hwoCbWyVT9IoaPnoVKTJdr7pFrPyRp8Nirra3EEIvBmlS6acXelZGcZkzeBGO30JtFwjM1ePBVB7ti1zh0bOiTABiQGcYBGGZ38gZYjqp9cWU4W5uWtnPGwhY9acBLAQToF0wfDZwG4RgIwvdF2IILX6JxIQakI1Kro-EggPxjY2VRQo1FFsac6GHoqOZdNG4cEMVpJg"
]
2 1.53 ms
SELECT t0.id AS id_1, t0.email AS email_2, t0.username AS username_3, t0.roles AS roles_4, t0.password AS password_5, t0.plain_password AS plain_password_6, t0.enabled AS enabled_7, t0.name AS name_8, t0.surname AS surname_9, t0.address AS address_10, t0.celular AS celular_11, t0.image AS image_12, t0.created_at AS created_at_13, t0.updated_at AS updated_at_14, t0.country_id AS country_id_15, t0.season_active AS season_active_16, t0.type_account AS type_account_17, t0.is_pro AS is_pro_18, t0.purchase AS purchase_19, t0.purchase_platform AS purchase_platform_20, t0.membership_id AS membership_id_21, t0.coupon_status AS coupon_status_22, t0.phone AS phone_23, t0.google_auth_code AS google_auth_code_24, t0.google_auth_code_verified AS google_auth_code_verified_25, t0.date_of_birth AS date_of_birth_26, t0.deleted_at AS deleted_at_27, t0.is_deleted AS is_deleted_28, t0.country_id AS country_id_29 FROM customer t0 WHERE t0.email = ? LIMIT 1
Parameters:
[
  "ig333355@gmail.com"
]
3 0.93 ms
SELECT t0.id AS id_1, t0.name AS name_2, t0.lastname AS lastname_3, t0.age AS age_4, t0.weight AS weight_5, t0.height AS height_6, t0.shoes AS shoes_7, t0.image AS image_8, t0.updated_at AS updated_at_9, t0.skillful_leg AS skillful_leg_10, t0.is_active AS is_active_11, t0.birth_date AS birth_date_12, t0.phone AS phone_13, t0.email AS email_14, t0.number_document AS number_document_15, t0.health_card AS health_card_16, t0.date_of_birth AS date_of_birth_17, t0.medical_review_date AS medical_review_date_18, t0.last_club AS last_club_19, t0.deleted_at AS deleted_at_20, t0.position_id AS position_id_21, t0.secondary_position_id AS secondary_position_id_22, t0.country_id AS country_id_23 FROM player t0 WHERE t0.id = ?
Parameters:
[
  "129860"
]
4 0.77 ms
SELECT t0.id AS id_1, t0.year AS year_2, t0.is_active AS is_active_3, t0.team_id AS team_id_4, t0.customer_id AS customer_id_5, t0.country_id AS country_id_6 FROM season t0 WHERE t0.customer_id = ?
Parameters:
[
  27287
]
5 0.76 ms
SELECT t0.id AS id_1, t0.games AS games_2, t0.goals AS goals_3, t0.yellow_card AS yellow_card_4, t0.red_card AS red_card_5, t0.dorsal AS dorsal_6, t0.is_active AS is_active_7, t0.deleted_at AS deleted_at_8, t0.season_id AS season_id_9, t0.player_id AS player_id_10 FROM season_player t0 WHERE t0.player_id = ? AND t0.season_id = ? LIMIT 1
Parameters:
[
  129860
  28744
]
6 0.92 ms
SELECT 
                COUNT(gps.id) AS games_played,
                SUM(gps.goals) AS total_goals,
                SUM(gps.goal_assistances) AS total_goal_assistances,
                COUNT(CASE WHEN gps.is_titular = 1 THEN 1 END) AS titular_games,
                COUNT(CASE WHEN gps.is_titular = 0 THEN 1 END) AS substitute_games
            FROM 
                game_player_statistics gps
            INNER JOIN 
                game g ON gps.game_id = g.id
            WHERE 
                gps.seasonplayer_id = :seasonPlayerId
                AND g.competition_id = 1  -- Assuming competition_id 1 represents league games
Parameters:
[
  "seasonPlayerId" => 133428
]

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.

Entities Mapping

Class Mapping errors
App\Entity\Customer
  • The association App\Entity\Customer#exerciseQualifications refers to the owning side field App\Entity\ExerciseQualification#customer_id which does not exist.
App\Entity\Country No errors.
App\Entity\Season No errors.
App\Entity\Suggestion No errors.
App\Entity\CouponCustomer No errors.
App\Entity\Notification No errors.
App\Entity\ExerciseQualification
  • The association App\Entity\ExerciseQualification#exercise refers to the inverse side field App\Entity\Exercise#qualifications which does not exist.
  • The association App\Entity\ExerciseQualification#customer refers to the inverse side field App\Entity\Customer#exerciseQualification which does not exist.
  • The association App\Entity\ExerciseQualification#exercises refers to the owning side field App\Entity\Exercise#qualifications which does not exist.
App\Entity\Strategy No errors.
App\Entity\Player
  • The field App\Entity\Player#convocatorias is on the inverse side of a bi-directional relationship, but the specified mappedBy association on the target-entity App\Entity\Convocatoria#players does not contain the required 'inversedBy="convocatorias"' attribute.
  • The association App\Entity\Player#country refers to the inverse side field App\Entity\Country#player which does not exist.
App\Entity\Position No errors.
App\Entity\SeasonPlayer
  • The association App\Entity\SeasonPlayer#minutes refers to the owning side field App\Entity\Minutes#player_id which does not exist.
  • The association App\Entity\SeasonPlayer#playerWeights refers to the owning side field App\Entity\PlayerWeight#season_player_id which does not exist.
  • The mappings App\Entity\SeasonPlayer#captainInGames and App\Entity\GameAlignment#seasonplayer are inconsistent with each other.
App\Entity\Convocatoria
  • The association App\Entity\Convocatoria#players refers to the owning side field App\Entity\ConvocatoriaPlayer#convocatoria which does not exist.
App\Entity\TrainingAsist No errors.
App\Entity\PlayerJustification No errors.
App\Entity\Team
  • The association App\Entity\Team#typeSoccer refers to the inverse side field App\Entity\TypeSoccer#teams which does not exist.
App\Entity\Game
  • The association App\Entity\Game#minutes refers to the owning side field App\Entity\Minutes#game_id which does not exist.
  • The mappings App\Entity\Game#rival_alignment and App\Entity\GameAlignment#game are inconsistent with each other.
  • The mappings App\Entity\Game#seasonplayer and App\Entity\GamePlayerStatistics#game are inconsistent with each other.
App\Entity\ExerciseCalendar
  • The association App\Entity\ExerciseCalendar#exerciseUser refers to the inverse side field App\Entity\ExerciseUser#exerciseCalendar which does not exist.
App\Entity\Minutes No errors.
App\Entity\KilometersTraveled No errors.
App\Entity\ShotsOnGoal No errors.
App\Entity\PlayerWeight
  • The mappings App\Entity\PlayerWeight#seasonPlayer and App\Entity\SeasonPlayer#playerWeights are inconsistent with each other.
App\Entity\GamePlayerStatistics No errors.
App\Entity\PlayerSportsInjuries No errors.
App\Entity\GameAlignment
  • The association App\Entity\GameAlignment#seasonplayer refers to the inverse side field App\Entity\SeasonPlayer#GameAlignment which does not exist.