QueryRecord class

An immutable database query record captured by MagicQueryWatcher (shipped in magic package via TelescopePlugin.registerWatcher).

Constructors

QueryRecord({required String sql, required List<Object?> bindings, required int timeMs, required DateTime time, String connectionName = 'default'})

Properties

bindings List<Object?>
Positional or named query bindings. Held as List<Object?> so the JSON envelope stays predictable; magic dispatches List<dynamic>, which is structurally identical.
final
connectionName String
Connection name (default when the consumer did not name it).
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sql String
The SQL string the QueryBuilder dispatched to the underlying driver.
final
time DateTime
final
timeMs int
Execution time in milliseconds reported by magic's QueryBuilder.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited