Return data as the EXPLAIN plan for the query.
You need to enable the db_plan_enabled setting before using this method.
Named parameters
const { data, error } = await supabase
.from('characters')
.select()
.explain()
const { data, error } = await supabase
.from('characters')
.select()
.explain({analyze:true,verbose:true})