You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently EXPLAIN ANALYZE can only be used on SELECT statements. This isn't quite right since a volatile function can be called from a SELECT statement - explain analyze should only be available on non-mutation SQL queries.
Currently you have to set an environmental variable to see explain in GraphiQL. This should instead be controlled by a header (and a config option). And there should be separate configs for EXPLAIN and EXPLAIN ANALYZE
It should be easy to copy the SQL and potentially even embed the variable values so the user can debug.
Rather than sending mermaid diagrams over the wire, the system should generate a JSON representation of the plan and the mermaid diagram (or alternative!) should be generated on the client
The text was updated successfully, but these errors were encountered:
EXPLAIN ANALYZE
can only be used onSELECT
statements. This isn't quite right since a volatile function can be called from aSELECT
statement - explain analyze should only be available on non-mutation SQL queries.EXPLAIN
andEXPLAIN ANALYZE
The text was updated successfully, but these errors were encountered: