graphlit-client 1.0.20251124002 → 1.0.20251124004
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.
|
@@ -8193,9 +8193,11 @@ export const GetInvestment = gql `
|
|
|
8193
8193
|
proRataRights
|
|
8194
8194
|
investor {
|
|
8195
8195
|
id
|
|
8196
|
+
name
|
|
8196
8197
|
}
|
|
8197
8198
|
organization {
|
|
8198
8199
|
id
|
|
8200
|
+
name
|
|
8199
8201
|
}
|
|
8200
8202
|
}
|
|
8201
8203
|
}
|
|
@@ -8372,15 +8374,19 @@ export const GetInvestmentFund = gql `
|
|
|
8372
8374
|
targetSizeCurrency
|
|
8373
8375
|
organizations {
|
|
8374
8376
|
id
|
|
8377
|
+
name
|
|
8375
8378
|
}
|
|
8376
8379
|
investments {
|
|
8377
8380
|
id
|
|
8381
|
+
name
|
|
8378
8382
|
}
|
|
8379
8383
|
parentFund {
|
|
8380
8384
|
id
|
|
8385
|
+
name
|
|
8381
8386
|
}
|
|
8382
8387
|
childFunds {
|
|
8383
8388
|
id
|
|
8389
|
+
name
|
|
8384
8390
|
}
|
|
8385
8391
|
}
|
|
8386
8392
|
}
|
|
@@ -10493,30 +10499,39 @@ export const GetOrganization = gql `
|
|
|
10493
10499
|
investmentCurrency
|
|
10494
10500
|
founders {
|
|
10495
10501
|
id
|
|
10502
|
+
name
|
|
10496
10503
|
}
|
|
10497
10504
|
employees {
|
|
10498
10505
|
id
|
|
10506
|
+
name
|
|
10499
10507
|
}
|
|
10500
10508
|
members {
|
|
10501
10509
|
id
|
|
10510
|
+
name
|
|
10502
10511
|
}
|
|
10503
10512
|
parentOrganization {
|
|
10504
10513
|
id
|
|
10514
|
+
name
|
|
10505
10515
|
}
|
|
10506
10516
|
memberOf {
|
|
10507
10517
|
id
|
|
10518
|
+
name
|
|
10508
10519
|
}
|
|
10509
10520
|
subOrganizations {
|
|
10510
10521
|
id
|
|
10522
|
+
name
|
|
10511
10523
|
}
|
|
10512
10524
|
locations {
|
|
10513
10525
|
id
|
|
10526
|
+
name
|
|
10514
10527
|
}
|
|
10515
10528
|
investmentsReceived {
|
|
10516
10529
|
id
|
|
10530
|
+
name
|
|
10517
10531
|
}
|
|
10518
10532
|
investorFunds {
|
|
10519
10533
|
id
|
|
10534
|
+
name
|
|
10520
10535
|
}
|
|
10521
10536
|
}
|
|
10522
10537
|
}
|
|
@@ -10725,27 +10740,35 @@ export const GetPerson = gql `
|
|
|
10725
10740
|
education
|
|
10726
10741
|
worksFor {
|
|
10727
10742
|
id
|
|
10743
|
+
name
|
|
10728
10744
|
}
|
|
10729
10745
|
affiliation {
|
|
10730
10746
|
id
|
|
10747
|
+
name
|
|
10731
10748
|
}
|
|
10732
10749
|
memberOf {
|
|
10733
10750
|
id
|
|
10751
|
+
name
|
|
10734
10752
|
}
|
|
10735
10753
|
alumniOf {
|
|
10736
10754
|
id
|
|
10755
|
+
name
|
|
10737
10756
|
}
|
|
10738
10757
|
birthPlace {
|
|
10739
10758
|
id
|
|
10759
|
+
name
|
|
10740
10760
|
}
|
|
10741
10761
|
deathPlace {
|
|
10742
10762
|
id
|
|
10763
|
+
name
|
|
10743
10764
|
}
|
|
10744
10765
|
homeLocation {
|
|
10745
10766
|
id
|
|
10767
|
+
name
|
|
10746
10768
|
}
|
|
10747
10769
|
workLocation {
|
|
10748
10770
|
id
|
|
10771
|
+
name
|
|
10749
10772
|
}
|
|
10750
10773
|
}
|
|
10751
10774
|
}
|
|
@@ -3962,6 +3962,8 @@ export declare enum EntityEnrichmentServiceTypes {
|
|
|
3962
3962
|
Fhir = "FHIR",
|
|
3963
3963
|
/** Parallel */
|
|
3964
3964
|
Parallel = "PARALLEL",
|
|
3965
|
+
/** Radar */
|
|
3966
|
+
Radar = "RADAR",
|
|
3965
3967
|
/** Wikipedia */
|
|
3966
3968
|
Wikipedia = "WIKIPEDIA"
|
|
3967
3969
|
}
|
|
@@ -26904,10 +26906,12 @@ export type GetInvestmentQuery = {
|
|
|
26904
26906
|
investor?: {
|
|
26905
26907
|
__typename?: 'InvestmentFund';
|
|
26906
26908
|
id: string;
|
|
26909
|
+
name: string;
|
|
26907
26910
|
} | null;
|
|
26908
26911
|
organization?: {
|
|
26909
26912
|
__typename?: 'Organization';
|
|
26910
26913
|
id: string;
|
|
26914
|
+
name: string;
|
|
26911
26915
|
} | null;
|
|
26912
26916
|
} | null;
|
|
26913
26917
|
};
|
|
@@ -27124,18 +27128,22 @@ export type GetInvestmentFundQuery = {
|
|
|
27124
27128
|
organizations?: Array<{
|
|
27125
27129
|
__typename?: 'Organization';
|
|
27126
27130
|
id: string;
|
|
27131
|
+
name: string;
|
|
27127
27132
|
} | null> | null;
|
|
27128
27133
|
investments?: Array<{
|
|
27129
27134
|
__typename?: 'Investment';
|
|
27130
27135
|
id: string;
|
|
27136
|
+
name: string;
|
|
27131
27137
|
} | null> | null;
|
|
27132
27138
|
parentFund?: {
|
|
27133
27139
|
__typename?: 'InvestmentFund';
|
|
27134
27140
|
id: string;
|
|
27141
|
+
name: string;
|
|
27135
27142
|
} | null;
|
|
27136
27143
|
childFunds?: Array<{
|
|
27137
27144
|
__typename?: 'InvestmentFund';
|
|
27138
27145
|
id: string;
|
|
27146
|
+
name: string;
|
|
27139
27147
|
} | null> | null;
|
|
27140
27148
|
} | null;
|
|
27141
27149
|
};
|
|
@@ -29767,38 +29775,47 @@ export type GetOrganizationQuery = {
|
|
|
29767
29775
|
founders?: Array<{
|
|
29768
29776
|
__typename?: 'Person';
|
|
29769
29777
|
id: string;
|
|
29778
|
+
name: string;
|
|
29770
29779
|
} | null> | null;
|
|
29771
29780
|
employees?: Array<{
|
|
29772
29781
|
__typename?: 'Person';
|
|
29773
29782
|
id: string;
|
|
29783
|
+
name: string;
|
|
29774
29784
|
} | null> | null;
|
|
29775
29785
|
members?: Array<{
|
|
29776
29786
|
__typename?: 'Person';
|
|
29777
29787
|
id: string;
|
|
29788
|
+
name: string;
|
|
29778
29789
|
} | null> | null;
|
|
29779
29790
|
parentOrganization?: {
|
|
29780
29791
|
__typename?: 'Organization';
|
|
29781
29792
|
id: string;
|
|
29793
|
+
name: string;
|
|
29782
29794
|
} | null;
|
|
29783
29795
|
memberOf?: Array<{
|
|
29784
29796
|
__typename?: 'Organization';
|
|
29785
29797
|
id: string;
|
|
29798
|
+
name: string;
|
|
29786
29799
|
} | null> | null;
|
|
29787
29800
|
subOrganizations?: Array<{
|
|
29788
29801
|
__typename?: 'Organization';
|
|
29789
29802
|
id: string;
|
|
29803
|
+
name: string;
|
|
29790
29804
|
} | null> | null;
|
|
29791
29805
|
locations?: Array<{
|
|
29792
29806
|
__typename?: 'Place';
|
|
29793
29807
|
id: string;
|
|
29808
|
+
name: string;
|
|
29794
29809
|
} | null> | null;
|
|
29795
29810
|
investmentsReceived?: Array<{
|
|
29796
29811
|
__typename?: 'Investment';
|
|
29797
29812
|
id: string;
|
|
29813
|
+
name: string;
|
|
29798
29814
|
} | null> | null;
|
|
29799
29815
|
investorFunds?: Array<{
|
|
29800
29816
|
__typename?: 'InvestmentFund';
|
|
29801
29817
|
id: string;
|
|
29818
|
+
name: string;
|
|
29802
29819
|
} | null> | null;
|
|
29803
29820
|
} | null;
|
|
29804
29821
|
};
|
|
@@ -30050,34 +30067,42 @@ export type GetPersonQuery = {
|
|
|
30050
30067
|
worksFor?: Array<{
|
|
30051
30068
|
__typename?: 'Organization';
|
|
30052
30069
|
id: string;
|
|
30070
|
+
name: string;
|
|
30053
30071
|
} | null> | null;
|
|
30054
30072
|
affiliation?: Array<{
|
|
30055
30073
|
__typename?: 'Organization';
|
|
30056
30074
|
id: string;
|
|
30075
|
+
name: string;
|
|
30057
30076
|
} | null> | null;
|
|
30058
30077
|
memberOf?: Array<{
|
|
30059
30078
|
__typename?: 'Organization';
|
|
30060
30079
|
id: string;
|
|
30080
|
+
name: string;
|
|
30061
30081
|
} | null> | null;
|
|
30062
30082
|
alumniOf?: Array<{
|
|
30063
30083
|
__typename?: 'Organization';
|
|
30064
30084
|
id: string;
|
|
30085
|
+
name: string;
|
|
30065
30086
|
} | null> | null;
|
|
30066
30087
|
birthPlace?: {
|
|
30067
30088
|
__typename?: 'Place';
|
|
30068
30089
|
id: string;
|
|
30090
|
+
name: string;
|
|
30069
30091
|
} | null;
|
|
30070
30092
|
deathPlace?: {
|
|
30071
30093
|
__typename?: 'Place';
|
|
30072
30094
|
id: string;
|
|
30095
|
+
name: string;
|
|
30073
30096
|
} | null;
|
|
30074
30097
|
homeLocation?: Array<{
|
|
30075
30098
|
__typename?: 'Place';
|
|
30076
30099
|
id: string;
|
|
30100
|
+
name: string;
|
|
30077
30101
|
} | null> | null;
|
|
30078
30102
|
workLocation?: Array<{
|
|
30079
30103
|
__typename?: 'Place';
|
|
30080
30104
|
id: string;
|
|
30105
|
+
name: string;
|
|
30081
30106
|
} | null> | null;
|
|
30082
30107
|
} | null;
|
|
30083
30108
|
};
|
|
@@ -681,6 +681,8 @@ export var EntityEnrichmentServiceTypes;
|
|
|
681
681
|
EntityEnrichmentServiceTypes["Fhir"] = "FHIR";
|
|
682
682
|
/** Parallel */
|
|
683
683
|
EntityEnrichmentServiceTypes["Parallel"] = "PARALLEL";
|
|
684
|
+
/** Radar */
|
|
685
|
+
EntityEnrichmentServiceTypes["Radar"] = "RADAR";
|
|
684
686
|
/** Wikipedia */
|
|
685
687
|
EntityEnrichmentServiceTypes["Wikipedia"] = "WIKIPEDIA";
|
|
686
688
|
})(EntityEnrichmentServiceTypes || (EntityEnrichmentServiceTypes = {}));
|