graphlit-client 1.0.20251124002 → 1.0.20251124003
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
|
}
|
|
@@ -26904,10 +26904,12 @@ export type GetInvestmentQuery = {
|
|
|
26904
26904
|
investor?: {
|
|
26905
26905
|
__typename?: 'InvestmentFund';
|
|
26906
26906
|
id: string;
|
|
26907
|
+
name: string;
|
|
26907
26908
|
} | null;
|
|
26908
26909
|
organization?: {
|
|
26909
26910
|
__typename?: 'Organization';
|
|
26910
26911
|
id: string;
|
|
26912
|
+
name: string;
|
|
26911
26913
|
} | null;
|
|
26912
26914
|
} | null;
|
|
26913
26915
|
};
|
|
@@ -27124,18 +27126,22 @@ export type GetInvestmentFundQuery = {
|
|
|
27124
27126
|
organizations?: Array<{
|
|
27125
27127
|
__typename?: 'Organization';
|
|
27126
27128
|
id: string;
|
|
27129
|
+
name: string;
|
|
27127
27130
|
} | null> | null;
|
|
27128
27131
|
investments?: Array<{
|
|
27129
27132
|
__typename?: 'Investment';
|
|
27130
27133
|
id: string;
|
|
27134
|
+
name: string;
|
|
27131
27135
|
} | null> | null;
|
|
27132
27136
|
parentFund?: {
|
|
27133
27137
|
__typename?: 'InvestmentFund';
|
|
27134
27138
|
id: string;
|
|
27139
|
+
name: string;
|
|
27135
27140
|
} | null;
|
|
27136
27141
|
childFunds?: Array<{
|
|
27137
27142
|
__typename?: 'InvestmentFund';
|
|
27138
27143
|
id: string;
|
|
27144
|
+
name: string;
|
|
27139
27145
|
} | null> | null;
|
|
27140
27146
|
} | null;
|
|
27141
27147
|
};
|
|
@@ -29767,38 +29773,47 @@ export type GetOrganizationQuery = {
|
|
|
29767
29773
|
founders?: Array<{
|
|
29768
29774
|
__typename?: 'Person';
|
|
29769
29775
|
id: string;
|
|
29776
|
+
name: string;
|
|
29770
29777
|
} | null> | null;
|
|
29771
29778
|
employees?: Array<{
|
|
29772
29779
|
__typename?: 'Person';
|
|
29773
29780
|
id: string;
|
|
29781
|
+
name: string;
|
|
29774
29782
|
} | null> | null;
|
|
29775
29783
|
members?: Array<{
|
|
29776
29784
|
__typename?: 'Person';
|
|
29777
29785
|
id: string;
|
|
29786
|
+
name: string;
|
|
29778
29787
|
} | null> | null;
|
|
29779
29788
|
parentOrganization?: {
|
|
29780
29789
|
__typename?: 'Organization';
|
|
29781
29790
|
id: string;
|
|
29791
|
+
name: string;
|
|
29782
29792
|
} | null;
|
|
29783
29793
|
memberOf?: Array<{
|
|
29784
29794
|
__typename?: 'Organization';
|
|
29785
29795
|
id: string;
|
|
29796
|
+
name: string;
|
|
29786
29797
|
} | null> | null;
|
|
29787
29798
|
subOrganizations?: Array<{
|
|
29788
29799
|
__typename?: 'Organization';
|
|
29789
29800
|
id: string;
|
|
29801
|
+
name: string;
|
|
29790
29802
|
} | null> | null;
|
|
29791
29803
|
locations?: Array<{
|
|
29792
29804
|
__typename?: 'Place';
|
|
29793
29805
|
id: string;
|
|
29806
|
+
name: string;
|
|
29794
29807
|
} | null> | null;
|
|
29795
29808
|
investmentsReceived?: Array<{
|
|
29796
29809
|
__typename?: 'Investment';
|
|
29797
29810
|
id: string;
|
|
29811
|
+
name: string;
|
|
29798
29812
|
} | null> | null;
|
|
29799
29813
|
investorFunds?: Array<{
|
|
29800
29814
|
__typename?: 'InvestmentFund';
|
|
29801
29815
|
id: string;
|
|
29816
|
+
name: string;
|
|
29802
29817
|
} | null> | null;
|
|
29803
29818
|
} | null;
|
|
29804
29819
|
};
|
|
@@ -30050,34 +30065,42 @@ export type GetPersonQuery = {
|
|
|
30050
30065
|
worksFor?: Array<{
|
|
30051
30066
|
__typename?: 'Organization';
|
|
30052
30067
|
id: string;
|
|
30068
|
+
name: string;
|
|
30053
30069
|
} | null> | null;
|
|
30054
30070
|
affiliation?: Array<{
|
|
30055
30071
|
__typename?: 'Organization';
|
|
30056
30072
|
id: string;
|
|
30073
|
+
name: string;
|
|
30057
30074
|
} | null> | null;
|
|
30058
30075
|
memberOf?: Array<{
|
|
30059
30076
|
__typename?: 'Organization';
|
|
30060
30077
|
id: string;
|
|
30078
|
+
name: string;
|
|
30061
30079
|
} | null> | null;
|
|
30062
30080
|
alumniOf?: Array<{
|
|
30063
30081
|
__typename?: 'Organization';
|
|
30064
30082
|
id: string;
|
|
30083
|
+
name: string;
|
|
30065
30084
|
} | null> | null;
|
|
30066
30085
|
birthPlace?: {
|
|
30067
30086
|
__typename?: 'Place';
|
|
30068
30087
|
id: string;
|
|
30088
|
+
name: string;
|
|
30069
30089
|
} | null;
|
|
30070
30090
|
deathPlace?: {
|
|
30071
30091
|
__typename?: 'Place';
|
|
30072
30092
|
id: string;
|
|
30093
|
+
name: string;
|
|
30073
30094
|
} | null;
|
|
30074
30095
|
homeLocation?: Array<{
|
|
30075
30096
|
__typename?: 'Place';
|
|
30076
30097
|
id: string;
|
|
30098
|
+
name: string;
|
|
30077
30099
|
} | null> | null;
|
|
30078
30100
|
workLocation?: Array<{
|
|
30079
30101
|
__typename?: 'Place';
|
|
30080
30102
|
id: string;
|
|
30103
|
+
name: string;
|
|
30081
30104
|
} | null> | null;
|
|
30082
30105
|
} | null;
|
|
30083
30106
|
};
|