@lucern/graph-primitives 1.0.32 → 1.0.34

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.
@@ -7,6 +7,7 @@ import { normalizeTupleContradictionPolicy, mkOpinion, conditionalDeduction, pro
7
7
  import { v } from 'convex/values';
8
8
  import '@lucern/contracts/schema-helpers/spine/tables/epistemicNodes';
9
9
  import { requireScopeWriteAccess } from '@lucern/access-control/access';
10
+ import { generateUuidV7 } from '@lucern/contracts/ids';
10
11
  import { permissiveReturn } from '@lucern/contracts/schema-helpers/validators';
11
12
 
12
13
  // src/convex.ts
@@ -1392,7 +1393,7 @@ async function scheduleFirstScoringThemeEdges(ctx, args, node, state) {
1392
1393
  continue;
1393
1394
  }
1394
1395
  await ctx.scheduler.runAfter(0, internal.neo4jEdgeAPI.createEdge, {
1395
- globalId: `edge-${node.globalId}-relates_to_thesis-${theme.globalId}`,
1396
+ globalId: generateUuidV7(),
1396
1397
  fromGlobalId: node.globalId,
1397
1398
  toGlobalId: theme.globalId,
1398
1399
  edgeType: "relates_to_thesis",