GET https://recette.junglebike.fr/search/workshop?location=latitude%3Dparis&longitude=2.3522

Query Metrics

1 Database Queries
1 Different statements
13.96 ms Query time
1 Invalid entities
0 Managed entities

Queries

Group similar statements

# Time Info
1 13.96 ms
SELECT 
        w.id,
        w.name,
        w.city,
        w.address,
        w.country,
        w.postal_code,
        w.lat,
        w.lng,
        w.radius AS radius_km,
        w.avatar_path,
        w.description,
        w.electric_bike_accepted,
        w.next_available_date,
        w.status,
        w.booking_type,
        w.bike_type_keys,
        w.services_provided_keys,
        w.services_provided,
        w.practice_type_keys,
        w.motor_brands,
        w.motor_positions,
        w.activity,
        w.location,
        w.contact,
        w.schedule,
        w.availability_calendar,
        w.created_at,
        w.gallery,
        w.supported_bike_type,
        w.supported_practice_type,
        w.time_slots, NULL AS distance_km FROM workshop w WHERE 1=1 AND w.status = :status AND (
            LOWER(w.city)        LIKE LOWER(:locationLike)
            OR LOWER(w.postal_code) LIKE LOWER(:locationLike)
            OR LOWER(w.address)  LIKE LOWER(:locationLike)
            OR LOWER(w.country)  LIKE LOWER(:locationLike)
        ) ORDER BY w.created_at DESC NULLS LAST LIMIT :limit
Parameters:
[
  "status" => "status.public"
  "locationLike" => "%latitude=paris%"
  "limit" => 30
]

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

Entities Mapping

Class Mapping errors
App\Entity\Workshop
  • The association App\Entity\Workshop#users refers to the inverse side field App\Entity\User#workshops which does not exist.