We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
getPinboardsByPaths
1 parent 50a0acc commit d2c9e8dCopy full SHA for d2c9e8d
workflow-bridge-lambda/src/index.ts
@@ -86,12 +86,12 @@ const getPinboardById =
86
return { ...data.externalData, ...data };
87
};
88
89
-const getPinboardsByPaths = async (identifiers: number[] | string[]) => {
+const getPinboardsByPaths = async (paths: string[]) => {
90
const stubsResponse = await fetch(
91
`${WORKFLOW_DATASTORE_API_URL}/stubsByPath?fieldFilter=${fields}`,
92
{
93
method: "POST",
94
- body: JSON.stringify(identifiers),
+ body: JSON.stringify(paths),
95
}
96
);
97
0 commit comments