We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f30769 commit ede4f13Copy full SHA for ede4f13
apps/roam/src/utils/migrateRelations.ts
@@ -20,7 +20,7 @@ const migrateRelations = async (dryRun = false): Promise<number> => {
20
await new Promise((resolve) => setTimeout(resolve, 150));
21
try {
22
const processed = new Set<string>();
23
- const relationData = await getRelationData();
+ const relationData = await getRelationData(true);
24
for (const rel of relationData) {
25
const key = `${rel.source}:${rel.relUid}:${rel.target}`;
26
if (processed.has(key)) continue;
0 commit comments