@brandboostinggmbh/observable-workflows 0.11.4 → 0.11.5
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 +0 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -745,9 +745,7 @@ const createLogAccessor = (context) => {
|
|
|
745
745
|
}
|
|
746
746
|
const listWorkflows = async (limit, offset, filter) => {
|
|
747
747
|
const { sql, bindings } = buildFilteredWorkflowQuery(filter);
|
|
748
|
-
console.log("executing listWorkflows with SQL", sql);
|
|
749
748
|
const result = await context.D1.prepare(sql).bind(...bindings, limit, offset).all();
|
|
750
|
-
console.log("listWorkflows finished. Processing results...");
|
|
751
749
|
if (result.results) {
|
|
752
750
|
const workflows = await Promise.all(result.results.map((row) => workflowTableRowToWorkflowRun(row, internalSerializer, context.externalBlobStorage)));
|
|
753
751
|
return workflows;
|