.toString()
TBD
When you construct your query with our query builder, instead of executing the query you can call .toString()
as the last chain in the sequence and it will produce a fully qualified string of the query that would be executed if it were ran.
Using this function call as a tool to help debug your code can be valuable.
Last updated