@brandboostinggmbh/observable-workflows 0.11.2 → 0.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -744,7 +744,7 @@ const createLogAccessor = (context) => {
|
|
|
744
744
|
}
|
|
745
745
|
const listWorkflows = async (limit, offset, filter) => {
|
|
746
746
|
const { sql, bindings } = buildFilteredWorkflowQuery(filter);
|
|
747
|
-
console.log("executing listWorkflows with SQL");
|
|
747
|
+
console.log("executing listWorkflows with SQL", sql);
|
|
748
748
|
const result = await context.D1.prepare(sql).bind(...bindings, limit, offset).all();
|
|
749
749
|
console.log("listWorkflows finished. Processing results...");
|
|
750
750
|
if (result.results) {
|