OBJECT
DjangoDebugSQL
Represents a single database query made to a Django managed DB.
link GraphQL Schema definition
- type DjangoDebugSQL {
- # The type of database being used (e.g. postrgesql, mysql, sqlite).
- String! :
- # The Django database alias (e.g. 'default').
- String! :
- # The actual SQL sent to this database.
- String :
- # Duration of this database query in seconds.
- Float! :
- # The raw SQL of this query, without params.
- String! :
- # JSON encoded database query parameters.
- String! :
- # Start time of this database query.
- Float! :
- # Stop time of this database query.
- Float! :
- # Whether this database query took more than 10 seconds.
- Boolean! :
- # Whether this database query was a SELECT.
- Boolean! :
- # Postgres transaction ID if available.
- String :
- # Postgres transaction status if available.
- String :
- # Postgres isolation level if available.
- String :
- # Postgres connection encoding if available.
- String :
- }