I want this
const { data, error } = await supabase
.from('users')
.select(`*`)
.eq('id', 5)
.single();
to print out this
SELECT * FROM users WHERE id=5
in console.
or atleast where can i find it in the supabase dashboard logs