@lucern/graph-sync 1.0.29 → 1.0.30

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.
@@ -0,0 +1,839 @@
1
+ import * as convex_server from 'convex/server';
2
+
3
+ /**
4
+ * Neo4j Graph Queries - advanced query surfaces.
5
+ */
6
+ /**
7
+ * Get high-priority questions (critical/high) that test beliefs
8
+ */
9
+ declare const getHighPriorityQuestions: convex_server.RegisteredAction<"public", {
10
+ limit?: number | undefined;
11
+ topicId?: string | undefined;
12
+ apiBaseUrl?: string | undefined;
13
+ }, Promise<{
14
+ questions: never[];
15
+ error: string;
16
+ } | {
17
+ questions: unknown[];
18
+ error?: undefined;
19
+ }>>;
20
+ /**
21
+ * Get evidence filtered by methodology (expert_interview, customer_interview, etc.)
22
+ */
23
+ declare const getEvidenceByMethodology: convex_server.RegisteredAction<"public", {
24
+ limit?: number | undefined;
25
+ topicId?: string | undefined;
26
+ apiBaseUrl?: string | undefined;
27
+ methodology: string;
28
+ }, Promise<{
29
+ evidence: never[];
30
+ error: string;
31
+ } | {
32
+ evidence: unknown[];
33
+ error?: undefined;
34
+ }>>;
35
+ /**
36
+ * Get proprietary/early evidence (information asymmetry advantage)
37
+ */
38
+ declare const getProprietaryEvidence: convex_server.RegisteredAction<"public", {
39
+ limit?: number | undefined;
40
+ topicId?: string | undefined;
41
+ apiBaseUrl?: string | undefined;
42
+ }, Promise<{
43
+ evidence: never[];
44
+ error: string;
45
+ } | {
46
+ evidence: unknown[];
47
+ error?: undefined;
48
+ }>>;
49
+ /**
50
+ * Get beliefs by epistemic status (hypothesis, emerging, established, challenged, etc.)
51
+ */
52
+ declare const getBeliefsByEpistemicStatus: convex_server.RegisteredAction<"public", {
53
+ limit?: number | undefined;
54
+ topicId?: string | undefined;
55
+ apiBaseUrl?: string | undefined;
56
+ epistemicStatus: string;
57
+ }, Promise<{
58
+ beliefs: never[];
59
+ error: string;
60
+ } | {
61
+ beliefs: unknown[];
62
+ error?: undefined;
63
+ }>>;
64
+ /**
65
+ * Get challenged beliefs that need attention
66
+ */
67
+ declare const getChallengedBeliefs: convex_server.RegisteredAction<"public", {
68
+ limit?: number | undefined;
69
+ topicId?: string | undefined;
70
+ apiBaseUrl?: string | undefined;
71
+ }, Promise<{
72
+ beliefs: never[];
73
+ error: string;
74
+ } | {
75
+ beliefs: unknown[];
76
+ error?: undefined;
77
+ }>>;
78
+ /**
79
+ * Get predictions with deadlines
80
+ */
81
+ declare const getPredictions: convex_server.RegisteredAction<"public", {
82
+ limit?: number | undefined;
83
+ topicId?: string | undefined;
84
+ apiBaseUrl?: string | undefined;
85
+ }, Promise<{
86
+ predictions: never[];
87
+ error: string;
88
+ } | {
89
+ predictions: unknown[];
90
+ error?: undefined;
91
+ }>>;
92
+ /**
93
+ * Get causal chains (edges with causal reasoning method)
94
+ */
95
+ declare const getCausalChains: convex_server.RegisteredAction<"public", {
96
+ limit?: number | undefined;
97
+ topicId?: string | undefined;
98
+ apiBaseUrl?: string | undefined;
99
+ }, Promise<{
100
+ chains: never[];
101
+ error: string;
102
+ } | {
103
+ chains: unknown[];
104
+ error?: undefined;
105
+ }>>;
106
+ /**
107
+ * Get necessary evidence for beliefs (logicalRole = necessary or necessary_sufficient)
108
+ */
109
+ declare const getNecessaryEvidence: convex_server.RegisteredAction<"public", {
110
+ limit?: number | undefined;
111
+ topicId?: string | undefined;
112
+ apiBaseUrl?: string | undefined;
113
+ }, Promise<{
114
+ results: never[];
115
+ error: string;
116
+ } | {
117
+ results: unknown[];
118
+ error?: undefined;
119
+ }>>;
120
+ /**
121
+ * Get falsification questions (designed to disprove beliefs)
122
+ */
123
+ declare const getFalsificationQuestions: convex_server.RegisteredAction<"public", {
124
+ limit?: number | undefined;
125
+ topicId?: string | undefined;
126
+ apiBaseUrl?: string | undefined;
127
+ beliefIds?: string[] | undefined;
128
+ }, Promise<{
129
+ questions: never[];
130
+ error: string;
131
+ } | {
132
+ questions: unknown[];
133
+ error?: undefined;
134
+ }>>;
135
+ /**
136
+ * Detect confirmation bias in beliefs.
137
+ * Returns beliefs with high supporting:contradicting evidence ratio.
138
+ */
139
+ declare const getConfirmationBiasScore: convex_server.RegisteredAction<"public", {
140
+ limit?: number | undefined;
141
+ topicId?: string | undefined;
142
+ apiBaseUrl?: string | undefined;
143
+ }, Promise<{
144
+ results: never[];
145
+ error: string;
146
+ } | {
147
+ results: unknown[];
148
+ error?: undefined;
149
+ }>>;
150
+ /**
151
+ * Detect anchoring bias - old beliefs that never got challenged or forked.
152
+ */
153
+ declare const getAnchoringBiasDetection: convex_server.RegisteredAction<"public", {
154
+ limit?: number | undefined;
155
+ topicId?: string | undefined;
156
+ apiBaseUrl?: string | undefined;
157
+ }, Promise<{
158
+ results: never[];
159
+ error: string;
160
+ } | {
161
+ results: unknown[];
162
+ error?: undefined;
163
+ }>>;
164
+ /**
165
+ * Detect source concentration risk - beliefs where all evidence traces to single source.
166
+ */
167
+ declare const getSourceConcentrationRisk: convex_server.RegisteredAction<"public", {
168
+ limit?: number | undefined;
169
+ topicId?: string | undefined;
170
+ apiBaseUrl?: string | undefined;
171
+ }, Promise<{
172
+ results: never[];
173
+ error: string;
174
+ } | {
175
+ results: unknown[];
176
+ error?: undefined;
177
+ }>>;
178
+ /**
179
+ * Find the minimum falsification set - smallest set of beliefs that would collapse the thesis.
180
+ */
181
+ declare const getMinimumFalsificationSet: convex_server.RegisteredAction<"public", {
182
+ topicId?: string | undefined;
183
+ apiBaseUrl?: string | undefined;
184
+ }, Promise<{
185
+ result: null;
186
+ error: string;
187
+ } | {
188
+ result: unknown;
189
+ error?: undefined;
190
+ }>>;
191
+ /**
192
+ * Get contradiction tension map - all unresolved tensions in the graph.
193
+ */
194
+ declare const getContradictionTensionMap: convex_server.RegisteredAction<"public", {
195
+ limit?: number | undefined;
196
+ topicId?: string | undefined;
197
+ apiBaseUrl?: string | undefined;
198
+ }, Promise<{
199
+ results: never[];
200
+ error: string;
201
+ } | {
202
+ results: unknown[];
203
+ error?: undefined;
204
+ }>>;
205
+ /**
206
+ * Get reasoning depth score - how deep is the evidence chain for each belief?
207
+ */
208
+ declare const getReasoningDepthScore: convex_server.RegisteredAction<"public", {
209
+ limit?: number | undefined;
210
+ topicId?: string | undefined;
211
+ apiBaseUrl?: string | undefined;
212
+ }, Promise<{
213
+ results: never[];
214
+ error: string;
215
+ } | {
216
+ results: unknown[];
217
+ error?: undefined;
218
+ }>>;
219
+ /**
220
+ * Get knowledge frontier - open questions on the boundary of what we know.
221
+ */
222
+ declare const getKnowledgeFrontier: convex_server.RegisteredAction<"public", {
223
+ limit?: number | undefined;
224
+ topicId?: string | undefined;
225
+ apiBaseUrl?: string | undefined;
226
+ }, Promise<{
227
+ results: never[];
228
+ error: string;
229
+ } | {
230
+ results: unknown[];
231
+ error?: undefined;
232
+ }>>;
233
+ /**
234
+ * Get belief half-life analysis - how long do beliefs survive before being superseded?
235
+ */
236
+ declare const getBeliefHalfLife: convex_server.RegisteredAction<"public", {
237
+ topicId?: string | undefined;
238
+ apiBaseUrl?: string | undefined;
239
+ }, Promise<{
240
+ result: null;
241
+ error: string;
242
+ } | {
243
+ result: unknown;
244
+ error?: undefined;
245
+ }>>;
246
+ /**
247
+ * Get meeting prep brief for a person at a company.
248
+ */
249
+ declare const getMeetingPrepBrief: convex_server.RegisteredAction<"public", {
250
+ topicId?: string | undefined;
251
+ apiBaseUrl?: string | undefined;
252
+ personGlobalId: string;
253
+ }, Promise<{
254
+ brief: null;
255
+ error: string;
256
+ } | {
257
+ brief: unknown;
258
+ error?: undefined;
259
+ }>>;
260
+ /**
261
+ * Get proprietary signals - our unique insights not in public discourse.
262
+ */
263
+ declare const getProprietarySignals: convex_server.RegisteredAction<"public", {
264
+ limit?: number | undefined;
265
+ topicId?: string | undefined;
266
+ apiBaseUrl?: string | undefined;
267
+ }, Promise<{
268
+ results: never[];
269
+ error: string;
270
+ } | {
271
+ results: unknown[];
272
+ error?: undefined;
273
+ }>>;
274
+ /**
275
+ * Get portfolio conviction dashboard - aggregate conviction metrics across all themes.
276
+ */
277
+ declare const getPortfolioConviction: convex_server.RegisteredAction<"public", {
278
+ limit?: number | undefined;
279
+ topicId?: string | undefined;
280
+ apiBaseUrl?: string | undefined;
281
+ }, Promise<{
282
+ portfolio: never[];
283
+ error: string;
284
+ } | {
285
+ portfolio: unknown[];
286
+ error?: undefined;
287
+ }>>;
288
+ /**
289
+ * Get stale themes - themes with no recent activity.
290
+ */
291
+ declare const getStaleThemes: convex_server.RegisteredAction<"public", {
292
+ limit?: number | undefined;
293
+ topicId?: string | undefined;
294
+ apiBaseUrl?: string | undefined;
295
+ }, Promise<{
296
+ themes: never[];
297
+ error: string;
298
+ } | {
299
+ themes: unknown[];
300
+ error?: undefined;
301
+ }>>;
302
+ /**
303
+ * Get missing question detection - high-confidence beliefs with no testing questions.
304
+ */
305
+ declare const getMissingQuestionDetection: convex_server.RegisteredAction<"public", {
306
+ limit?: number | undefined;
307
+ topicId?: string | undefined;
308
+ apiBaseUrl?: string | undefined;
309
+ }, Promise<{
310
+ results: never[];
311
+ error: string;
312
+ } | {
313
+ results: unknown[];
314
+ error?: undefined;
315
+ }>>;
316
+ /**
317
+ * Get surprise detection - evidence that surprised us (high surprise score).
318
+ */
319
+ declare const getSurpriseDetection: convex_server.RegisteredAction<"public", {
320
+ limit?: number | undefined;
321
+ topicId?: string | undefined;
322
+ apiBaseUrl?: string | undefined;
323
+ }, Promise<{
324
+ results: never[];
325
+ error: string;
326
+ } | {
327
+ results: unknown[];
328
+ error?: undefined;
329
+ }>>;
330
+ /**
331
+ * Get non-consensus beliefs - beliefs where we diverge from market consensus.
332
+ */
333
+ declare const getNonConsensusBeliefs: convex_server.RegisteredAction<"public", {
334
+ limit?: number | undefined;
335
+ topicId?: string | undefined;
336
+ apiBaseUrl?: string | undefined;
337
+ }, Promise<{
338
+ results: never[];
339
+ error: string;
340
+ } | {
341
+ results: unknown[];
342
+ error?: undefined;
343
+ }>>;
344
+ /**
345
+ * Semantic search with graph context — find nodes by embedding similarity
346
+ * and return their graph neighborhood for context.
347
+ */
348
+ declare const semanticSearch: convex_server.RegisteredAction<"public", {
349
+ topicId?: string | undefined;
350
+ apiBaseUrl?: string | undefined;
351
+ indexName?: string | undefined;
352
+ topK?: number | undefined;
353
+ minScore?: number | undefined;
354
+ embedding: number[];
355
+ }, Promise<{
356
+ results: never[];
357
+ error: string;
358
+ } | {
359
+ results: unknown[];
360
+ error?: undefined;
361
+ }>>;
362
+ /**
363
+ * Find semantic orphans — nodes structurally connected but semantically
364
+ * distant from their graph neighbors.
365
+ */
366
+ declare const getSemanticOrphans: convex_server.RegisteredAction<"public", {
367
+ limit?: number | undefined;
368
+ topicId?: string | undefined;
369
+ apiBaseUrl?: string | undefined;
370
+ threshold?: number | undefined;
371
+ }, Promise<{
372
+ results: never[];
373
+ error: string;
374
+ } | {
375
+ results: unknown[];
376
+ error?: undefined;
377
+ }>>;
378
+ /**
379
+ * Find soft contradictions — beliefs about the same topic (high embedding similarity)
380
+ * but with divergent evidence or confidence.
381
+ */
382
+ declare const getSoftContradictions: convex_server.RegisteredAction<"public", {
383
+ limit?: number | undefined;
384
+ topicId?: string | undefined;
385
+ apiBaseUrl?: string | undefined;
386
+ similarityThreshold?: number | undefined;
387
+ }, Promise<{
388
+ results: never[];
389
+ error: string;
390
+ } | {
391
+ results: unknown[];
392
+ error?: undefined;
393
+ }>>;
394
+ /**
395
+ * Find semantic bridges — nodes semantically similar but graph-distant.
396
+ * These represent potential missing connections.
397
+ */
398
+ declare const getSemanticBridges: convex_server.RegisteredAction<"public", {
399
+ limit?: number | undefined;
400
+ topicId?: string | undefined;
401
+ apiBaseUrl?: string | undefined;
402
+ similarityThreshold?: number | undefined;
403
+ }, Promise<{
404
+ results: never[];
405
+ error: string;
406
+ } | {
407
+ results: unknown[];
408
+ error?: undefined;
409
+ }>>;
410
+ /**
411
+ * Graph-aware RAG search — semantic search that expands along graph structure
412
+ * to pull in supporting context (evidence, themes, sources).
413
+ */
414
+ declare const graphAwareSearch: convex_server.RegisteredAction<"public", {
415
+ topicId?: string | undefined;
416
+ apiBaseUrl?: string | undefined;
417
+ indexName?: string | undefined;
418
+ topK?: number | undefined;
419
+ minScore?: number | undefined;
420
+ embedding: number[];
421
+ }, Promise<{
422
+ results: never[];
423
+ error: string;
424
+ } | {
425
+ results: unknown[];
426
+ error?: undefined;
427
+ }>>;
428
+
429
+ /**
430
+ * Neo4j Graph Queries
431
+ *
432
+ * Convex actions that execute graph queries against Neo4j.
433
+ * These provide graph intelligence that's hard/impossible in Convex alone:
434
+ * - Multi-hop traversals
435
+ * - Path finding
436
+ * - Cross-theme patterns
437
+ * - Contradiction detection
438
+ *
439
+ * Architecture:
440
+ * - Convex action calls a tenant-owned query proxy route
441
+ * - Query proxy executes a predefined Cypher query
442
+ * - Results return to the Convex caller
443
+ */
444
+ /**
445
+ * Get the full lineage of a node (what it was derived/extracted from)
446
+ * Uses Neo4j for efficient multi-hop traversal up to 10 levels deep
447
+ */
448
+ declare const getNodeLineageGraph: convex_server.RegisteredAction<"public", {
449
+ topicId?: string | undefined;
450
+ apiBaseUrl?: string | undefined;
451
+ globalId: string;
452
+ }, Promise<{
453
+ lineage: never[];
454
+ error: string;
455
+ } | {
456
+ lineage: unknown[];
457
+ error?: undefined;
458
+ }>>;
459
+ /**
460
+ * Get nodes connected to a given node within N hops
461
+ * Much more powerful than Convex's single-hop queries
462
+ */
463
+ declare const getConnectedNodesGraph: convex_server.RegisteredAction<"public", {
464
+ limit?: number | undefined;
465
+ topicId?: string | undefined;
466
+ apiBaseUrl?: string | undefined;
467
+ maxHops?: number | undefined;
468
+ globalId: string;
469
+ }, Promise<{
470
+ nodes: never[];
471
+ error: string;
472
+ } | {
473
+ nodes: unknown[];
474
+ error?: undefined;
475
+ }>>;
476
+ /**
477
+ * Get all beliefs that belong to a theme
478
+ */
479
+ declare const getThemeBeliefsGraph: convex_server.RegisteredAction<"public", {
480
+ themeGlobalId: string;
481
+ }, Promise<{
482
+ beliefs: never[];
483
+ error: string;
484
+ } | {
485
+ beliefs: unknown[];
486
+ error?: undefined;
487
+ }>>;
488
+ /**
489
+ * Get evidence that supports a belief (through question chain OR direct link)
490
+ */
491
+ declare const getBeliefEvidenceGraph: convex_server.RegisteredAction<"public", {
492
+ topicId?: string | undefined;
493
+ apiBaseUrl?: string | undefined;
494
+ beliefGlobalId: string;
495
+ }, Promise<{
496
+ evidence: never[];
497
+ error: string;
498
+ } | {
499
+ evidence: unknown[];
500
+ error?: undefined;
501
+ }>>;
502
+ /**
503
+ * Find beliefs that appear in multiple themes (cross-cutting insights)
504
+ */
505
+ declare const getCrossThemeBeliefs: convex_server.RegisteredAction<"public", {
506
+ limit?: number | undefined;
507
+ topicId?: string | undefined;
508
+ apiBaseUrl?: string | undefined;
509
+ }, Promise<{
510
+ beliefs: never[];
511
+ error: string;
512
+ } | {
513
+ beliefs: unknown[];
514
+ error?: undefined;
515
+ }>>;
516
+ /**
517
+ * Find potential contradictions in the knowledge graph
518
+ * Evidence that tests conflicting beliefs
519
+ */
520
+ declare const findPotentialContradictions: convex_server.RegisteredAction<"public", {
521
+ limit?: number | undefined;
522
+ topicId?: string | undefined;
523
+ apiBaseUrl?: string | undefined;
524
+ }, Promise<{
525
+ contradictions: never[];
526
+ error: string;
527
+ } | {
528
+ contradictions: unknown[];
529
+ error?: undefined;
530
+ }>>;
531
+ /**
532
+ * Get the full subgraph for a theme (all connected beliefs, questions, evidence)
533
+ */
534
+ declare const getThemeSubgraph: convex_server.RegisteredAction<"public", {
535
+ topicId?: string | undefined;
536
+ apiBaseUrl?: string | undefined;
537
+ themeGlobalId: string;
538
+ }, Promise<{
539
+ subgraph: null;
540
+ error: string;
541
+ } | {
542
+ subgraph: {} | null;
543
+ error?: undefined;
544
+ }>>;
545
+ /**
546
+ * Find the path from evidence to a belief (how does this evidence support this belief?)
547
+ */
548
+ declare const getEvidenceToBeliefPath: convex_server.RegisteredAction<"public", {
549
+ topicId?: string | undefined;
550
+ apiBaseUrl?: string | undefined;
551
+ beliefGlobalId: string;
552
+ evidenceGlobalId: string;
553
+ }, Promise<{
554
+ path: null;
555
+ error: string;
556
+ } | {
557
+ path: {
558
+ nodes: unknown[];
559
+ relationships: string[];
560
+ length: number;
561
+ };
562
+ error?: undefined;
563
+ }>>;
564
+ /**
565
+ * Get stats for a theme (counts of beliefs, questions, evidence)
566
+ */
567
+ declare const getThemeStats: convex_server.RegisteredAction<"public", {
568
+ themeGlobalId: string;
569
+ }, Promise<{
570
+ stats: null;
571
+ error: string;
572
+ } | {
573
+ stats: {} | null;
574
+ error?: undefined;
575
+ }>>;
576
+ /**
577
+ * Get candidate theme-to-valuechain mappings
578
+ * Returns all themes and value chains for manual or AI-assisted matching
579
+ */
580
+ declare const getThemeValueChainCandidates: convex_server.RegisteredAction<"public", {
581
+ limit?: number | undefined;
582
+ topicId?: string | undefined;
583
+ apiBaseUrl?: string | undefined;
584
+ }, Promise<{
585
+ candidates: never[];
586
+ error: string;
587
+ } | {
588
+ candidates: unknown[];
589
+ error?: undefined;
590
+ }>>;
591
+ /**
592
+ * Find themes that impact a specific company
593
+ */
594
+ declare const getThemesImpactingCompany: convex_server.RegisteredAction<"public", {
595
+ limit?: number | undefined;
596
+ companyName: string;
597
+ }, Promise<{
598
+ results: never[];
599
+ error: string;
600
+ } | {
601
+ results: unknown[];
602
+ error?: undefined;
603
+ }>>;
604
+ /**
605
+ * Find companies related to a theme
606
+ */
607
+ declare const getCompaniesByTheme: convex_server.RegisteredAction<"public", {
608
+ limit?: number | undefined;
609
+ themeName: string;
610
+ }, Promise<{
611
+ results: never[];
612
+ error: string;
613
+ } | {
614
+ results: unknown[];
615
+ error?: undefined;
616
+ }>>;
617
+ /**
618
+ * Find questions about a value chain
619
+ */
620
+ declare const getQuestionsByValueChain: convex_server.RegisteredAction<"public", {
621
+ limit?: number | undefined;
622
+ valueChainName: string;
623
+ }, Promise<{
624
+ results: never[];
625
+ error: string;
626
+ } | {
627
+ results: unknown[];
628
+ error?: undefined;
629
+ }>>;
630
+ /**
631
+ * Find questions about a theme
632
+ */
633
+ declare const getQuestionsByTheme: convex_server.RegisteredAction<"public", {
634
+ limit?: number | undefined;
635
+ themeName: string;
636
+ }, Promise<{
637
+ results: never[];
638
+ error: string;
639
+ } | {
640
+ results: unknown[];
641
+ error?: undefined;
642
+ }>>;
643
+ /**
644
+ * Find people/contacts related to a theme
645
+ */
646
+ declare const getPeopleByTheme: convex_server.RegisteredAction<"public", {
647
+ limit?: number | undefined;
648
+ themeName: string;
649
+ }, Promise<{
650
+ results: never[];
651
+ error: string;
652
+ } | {
653
+ results: unknown[];
654
+ error?: undefined;
655
+ }>>;
656
+ /**
657
+ * Find people at a specific company
658
+ */
659
+ declare const getPeopleByCompany: convex_server.RegisteredAction<"public", {
660
+ limit?: number | undefined;
661
+ companyName: string;
662
+ }, Promise<{
663
+ results: never[];
664
+ error: string;
665
+ } | {
666
+ results: unknown[];
667
+ error?: undefined;
668
+ }>>;
669
+ /**
670
+ * Find value chains for a theme
671
+ */
672
+ declare const getValueChainsByTheme: convex_server.RegisteredAction<"public", {
673
+ limit?: number | undefined;
674
+ themeName: string;
675
+ }, Promise<{
676
+ results: never[];
677
+ error: string;
678
+ } | {
679
+ results: unknown[];
680
+ error?: undefined;
681
+ }>>;
682
+ /**
683
+ * Find functions in a value chain
684
+ */
685
+ declare const getFunctionsByValueChain: convex_server.RegisteredAction<"public", {
686
+ limit?: number | undefined;
687
+ valueChainName: string;
688
+ }, Promise<{
689
+ results: never[];
690
+ error: string;
691
+ } | {
692
+ results: unknown[];
693
+ error?: undefined;
694
+ }>>;
695
+ /**
696
+ * Find beliefs about a company
697
+ */
698
+ declare const getBeliefsByCompany: convex_server.RegisteredAction<"public", {
699
+ limit?: number | undefined;
700
+ companyName: string;
701
+ }, Promise<{
702
+ results: never[];
703
+ error: string;
704
+ } | {
705
+ results: unknown[];
706
+ error?: undefined;
707
+ }>>;
708
+ /**
709
+ * Find evidence about a company
710
+ */
711
+ declare const getEvidenceByCompany: convex_server.RegisteredAction<"public", {
712
+ limit?: number | undefined;
713
+ companyName: string;
714
+ }, Promise<{
715
+ results: never[];
716
+ error: string;
717
+ } | {
718
+ results: unknown[];
719
+ error?: undefined;
720
+ }>>;
721
+ /**
722
+ * Search all nodes by text
723
+ */
724
+ declare const searchAllNodes: convex_server.RegisteredAction<"public", {
725
+ limit?: number | undefined;
726
+ searchText: string;
727
+ }, Promise<{
728
+ results: never[];
729
+ error: string;
730
+ } | {
731
+ results: unknown[];
732
+ error?: undefined;
733
+ }>>;
734
+ /**
735
+ * Get all relationships from a node
736
+ */
737
+ declare const getNodeRelationships: convex_server.RegisteredAction<"public", {
738
+ globalId?: string | undefined;
739
+ limit?: number | undefined;
740
+ searchText?: string | undefined;
741
+ }, Promise<{
742
+ results: never[];
743
+ error: string;
744
+ } | {
745
+ results: unknown[];
746
+ error?: undefined;
747
+ }>>;
748
+ /**
749
+ * Get graph statistics (node counts by type)
750
+ */
751
+ declare const getGraphStats: convex_server.RegisteredAction<"public", {}, Promise<{
752
+ stats: never[];
753
+ error: string;
754
+ } | {
755
+ stats: unknown[];
756
+ error?: undefined;
757
+ }>>;
758
+ /**
759
+ * Flexible graph query - routes to appropriate query based on intent
760
+ * This is the main entry point for natural language graph queries
761
+ */
762
+ declare const queryGraph: convex_server.RegisteredAction<"public", {
763
+ topicId?: string | undefined;
764
+ apiBaseUrl?: string | undefined;
765
+ params: {
766
+ globalId?: string | undefined;
767
+ limit?: number | undefined;
768
+ companyName?: string | undefined;
769
+ themeName?: string | undefined;
770
+ valueChainName?: string | undefined;
771
+ searchText?: string | undefined;
772
+ };
773
+ queryType: "themesImpactingCompany" | "companiesByTheme" | "questionsByValueChain" | "questionsByTheme" | "peopleByTheme" | "peopleByCompany" | "valueChainsByTheme" | "functionsByValueChain" | "beliefsByCompany" | "evidenceByCompany" | "searchAllNodes" | "nodeRelationships" | "graphStats";
774
+ }, Promise<{
775
+ results: never[];
776
+ error: string;
777
+ } | {
778
+ results: unknown[];
779
+ error?: undefined;
780
+ }>>;
781
+
782
+ declare const neo4jQueries_findPotentialContradictions: typeof findPotentialContradictions;
783
+ declare const neo4jQueries_getAnchoringBiasDetection: typeof getAnchoringBiasDetection;
784
+ declare const neo4jQueries_getBeliefEvidenceGraph: typeof getBeliefEvidenceGraph;
785
+ declare const neo4jQueries_getBeliefHalfLife: typeof getBeliefHalfLife;
786
+ declare const neo4jQueries_getBeliefsByCompany: typeof getBeliefsByCompany;
787
+ declare const neo4jQueries_getBeliefsByEpistemicStatus: typeof getBeliefsByEpistemicStatus;
788
+ declare const neo4jQueries_getCausalChains: typeof getCausalChains;
789
+ declare const neo4jQueries_getChallengedBeliefs: typeof getChallengedBeliefs;
790
+ declare const neo4jQueries_getCompaniesByTheme: typeof getCompaniesByTheme;
791
+ declare const neo4jQueries_getConfirmationBiasScore: typeof getConfirmationBiasScore;
792
+ declare const neo4jQueries_getConnectedNodesGraph: typeof getConnectedNodesGraph;
793
+ declare const neo4jQueries_getContradictionTensionMap: typeof getContradictionTensionMap;
794
+ declare const neo4jQueries_getCrossThemeBeliefs: typeof getCrossThemeBeliefs;
795
+ declare const neo4jQueries_getEvidenceByCompany: typeof getEvidenceByCompany;
796
+ declare const neo4jQueries_getEvidenceByMethodology: typeof getEvidenceByMethodology;
797
+ declare const neo4jQueries_getEvidenceToBeliefPath: typeof getEvidenceToBeliefPath;
798
+ declare const neo4jQueries_getFalsificationQuestions: typeof getFalsificationQuestions;
799
+ declare const neo4jQueries_getFunctionsByValueChain: typeof getFunctionsByValueChain;
800
+ declare const neo4jQueries_getGraphStats: typeof getGraphStats;
801
+ declare const neo4jQueries_getHighPriorityQuestions: typeof getHighPriorityQuestions;
802
+ declare const neo4jQueries_getKnowledgeFrontier: typeof getKnowledgeFrontier;
803
+ declare const neo4jQueries_getMeetingPrepBrief: typeof getMeetingPrepBrief;
804
+ declare const neo4jQueries_getMinimumFalsificationSet: typeof getMinimumFalsificationSet;
805
+ declare const neo4jQueries_getMissingQuestionDetection: typeof getMissingQuestionDetection;
806
+ declare const neo4jQueries_getNecessaryEvidence: typeof getNecessaryEvidence;
807
+ declare const neo4jQueries_getNodeLineageGraph: typeof getNodeLineageGraph;
808
+ declare const neo4jQueries_getNodeRelationships: typeof getNodeRelationships;
809
+ declare const neo4jQueries_getNonConsensusBeliefs: typeof getNonConsensusBeliefs;
810
+ declare const neo4jQueries_getPeopleByCompany: typeof getPeopleByCompany;
811
+ declare const neo4jQueries_getPeopleByTheme: typeof getPeopleByTheme;
812
+ declare const neo4jQueries_getPortfolioConviction: typeof getPortfolioConviction;
813
+ declare const neo4jQueries_getPredictions: typeof getPredictions;
814
+ declare const neo4jQueries_getProprietaryEvidence: typeof getProprietaryEvidence;
815
+ declare const neo4jQueries_getProprietarySignals: typeof getProprietarySignals;
816
+ declare const neo4jQueries_getQuestionsByTheme: typeof getQuestionsByTheme;
817
+ declare const neo4jQueries_getQuestionsByValueChain: typeof getQuestionsByValueChain;
818
+ declare const neo4jQueries_getReasoningDepthScore: typeof getReasoningDepthScore;
819
+ declare const neo4jQueries_getSemanticBridges: typeof getSemanticBridges;
820
+ declare const neo4jQueries_getSemanticOrphans: typeof getSemanticOrphans;
821
+ declare const neo4jQueries_getSoftContradictions: typeof getSoftContradictions;
822
+ declare const neo4jQueries_getSourceConcentrationRisk: typeof getSourceConcentrationRisk;
823
+ declare const neo4jQueries_getStaleThemes: typeof getStaleThemes;
824
+ declare const neo4jQueries_getSurpriseDetection: typeof getSurpriseDetection;
825
+ declare const neo4jQueries_getThemeBeliefsGraph: typeof getThemeBeliefsGraph;
826
+ declare const neo4jQueries_getThemeStats: typeof getThemeStats;
827
+ declare const neo4jQueries_getThemeSubgraph: typeof getThemeSubgraph;
828
+ declare const neo4jQueries_getThemeValueChainCandidates: typeof getThemeValueChainCandidates;
829
+ declare const neo4jQueries_getThemesImpactingCompany: typeof getThemesImpactingCompany;
830
+ declare const neo4jQueries_getValueChainsByTheme: typeof getValueChainsByTheme;
831
+ declare const neo4jQueries_graphAwareSearch: typeof graphAwareSearch;
832
+ declare const neo4jQueries_queryGraph: typeof queryGraph;
833
+ declare const neo4jQueries_searchAllNodes: typeof searchAllNodes;
834
+ declare const neo4jQueries_semanticSearch: typeof semanticSearch;
835
+ declare namespace neo4jQueries {
836
+ export { neo4jQueries_findPotentialContradictions as findPotentialContradictions, neo4jQueries_getAnchoringBiasDetection as getAnchoringBiasDetection, neo4jQueries_getBeliefEvidenceGraph as getBeliefEvidenceGraph, neo4jQueries_getBeliefHalfLife as getBeliefHalfLife, neo4jQueries_getBeliefsByCompany as getBeliefsByCompany, neo4jQueries_getBeliefsByEpistemicStatus as getBeliefsByEpistemicStatus, neo4jQueries_getCausalChains as getCausalChains, neo4jQueries_getChallengedBeliefs as getChallengedBeliefs, neo4jQueries_getCompaniesByTheme as getCompaniesByTheme, neo4jQueries_getConfirmationBiasScore as getConfirmationBiasScore, neo4jQueries_getConnectedNodesGraph as getConnectedNodesGraph, neo4jQueries_getContradictionTensionMap as getContradictionTensionMap, neo4jQueries_getCrossThemeBeliefs as getCrossThemeBeliefs, neo4jQueries_getEvidenceByCompany as getEvidenceByCompany, neo4jQueries_getEvidenceByMethodology as getEvidenceByMethodology, neo4jQueries_getEvidenceToBeliefPath as getEvidenceToBeliefPath, neo4jQueries_getFalsificationQuestions as getFalsificationQuestions, neo4jQueries_getFunctionsByValueChain as getFunctionsByValueChain, neo4jQueries_getGraphStats as getGraphStats, neo4jQueries_getHighPriorityQuestions as getHighPriorityQuestions, neo4jQueries_getKnowledgeFrontier as getKnowledgeFrontier, neo4jQueries_getMeetingPrepBrief as getMeetingPrepBrief, neo4jQueries_getMinimumFalsificationSet as getMinimumFalsificationSet, neo4jQueries_getMissingQuestionDetection as getMissingQuestionDetection, neo4jQueries_getNecessaryEvidence as getNecessaryEvidence, neo4jQueries_getNodeLineageGraph as getNodeLineageGraph, neo4jQueries_getNodeRelationships as getNodeRelationships, neo4jQueries_getNonConsensusBeliefs as getNonConsensusBeliefs, neo4jQueries_getPeopleByCompany as getPeopleByCompany, neo4jQueries_getPeopleByTheme as getPeopleByTheme, neo4jQueries_getPortfolioConviction as getPortfolioConviction, neo4jQueries_getPredictions as getPredictions, neo4jQueries_getProprietaryEvidence as getProprietaryEvidence, neo4jQueries_getProprietarySignals as getProprietarySignals, neo4jQueries_getQuestionsByTheme as getQuestionsByTheme, neo4jQueries_getQuestionsByValueChain as getQuestionsByValueChain, neo4jQueries_getReasoningDepthScore as getReasoningDepthScore, neo4jQueries_getSemanticBridges as getSemanticBridges, neo4jQueries_getSemanticOrphans as getSemanticOrphans, neo4jQueries_getSoftContradictions as getSoftContradictions, neo4jQueries_getSourceConcentrationRisk as getSourceConcentrationRisk, neo4jQueries_getStaleThemes as getStaleThemes, neo4jQueries_getSurpriseDetection as getSurpriseDetection, neo4jQueries_getThemeBeliefsGraph as getThemeBeliefsGraph, neo4jQueries_getThemeStats as getThemeStats, neo4jQueries_getThemeSubgraph as getThemeSubgraph, neo4jQueries_getThemeValueChainCandidates as getThemeValueChainCandidates, neo4jQueries_getThemesImpactingCompany as getThemesImpactingCompany, neo4jQueries_getValueChainsByTheme as getValueChainsByTheme, neo4jQueries_graphAwareSearch as graphAwareSearch, neo4jQueries_queryGraph as queryGraph, neo4jQueries_searchAllNodes as searchAllNodes, neo4jQueries_semanticSearch as semanticSearch };
837
+ }
838
+
839
+ export { semanticSearch as $, getNodeLineageGraph as A, getNodeRelationships as B, getNonConsensusBeliefs as C, getPeopleByCompany as D, getPeopleByTheme as E, getPortfolioConviction as F, getPredictions as G, getProprietaryEvidence as H, getProprietarySignals as I, getQuestionsByTheme as J, getQuestionsByValueChain as K, getReasoningDepthScore as L, getSemanticBridges as M, getSemanticOrphans as N, getSoftContradictions as O, getSourceConcentrationRisk as P, getStaleThemes as Q, getSurpriseDetection as R, getThemeBeliefsGraph as S, getThemeStats as T, getThemeSubgraph as U, getThemeValueChainCandidates as V, getThemesImpactingCompany as W, getValueChainsByTheme as X, graphAwareSearch as Y, queryGraph as Z, searchAllNodes as _, getBeliefEvidenceGraph as a, getBeliefHalfLife as b, getBeliefsByCompany as c, getBeliefsByEpistemicStatus as d, getCausalChains as e, findPotentialContradictions as f, getAnchoringBiasDetection as g, getChallengedBeliefs as h, getCompaniesByTheme as i, getConfirmationBiasScore as j, getConnectedNodesGraph as k, getContradictionTensionMap as l, getCrossThemeBeliefs as m, neo4jQueries as n, getEvidenceByCompany as o, getEvidenceByMethodology as p, getEvidenceToBeliefPath as q, getFalsificationQuestions as r, getFunctionsByValueChain as s, getGraphStats as t, getHighPriorityQuestions as u, getKnowledgeFrontier as v, getMeetingPrepBrief as w, getMinimumFalsificationSet as x, getMissingQuestionDetection as y, getNecessaryEvidence as z };