graphlit-client 1.0.20251124003 → 1.0.20251126001
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.
package/dist/client.d.ts
CHANGED
|
@@ -296,6 +296,7 @@ declare class Graphlit {
|
|
|
296
296
|
deleteAllPersons(filter?: Types.PersonFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllPersonsMutation>;
|
|
297
297
|
getPerson(id: string): Promise<Types.GetPersonQuery>;
|
|
298
298
|
queryPersons(filter?: Types.PersonFilter): Promise<Types.QueryPersonsQuery>;
|
|
299
|
+
queryPersonsExpanded(filter?: Types.PersonFilter, correlationId?: string): Promise<Types.QueryPersonsExpandedQuery>;
|
|
299
300
|
countPersons(filter?: Types.PersonFilter, correlationId?: string): Promise<Types.CountPersonsQuery>;
|
|
300
301
|
enrichPersons(connector: Types.EntityEnrichmentConnectorInput, filter?: Types.PersonFilter, correlationId?: string): Promise<Types.EnrichPersonsMutation>;
|
|
301
302
|
createOrganization(organization: Types.OrganizationInput): Promise<Types.CreateOrganizationMutation>;
|
|
@@ -305,6 +306,7 @@ declare class Graphlit {
|
|
|
305
306
|
deleteAllOrganizations(filter?: Types.OrganizationFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllOrganizationsMutation>;
|
|
306
307
|
getOrganization(id: string): Promise<Types.GetOrganizationQuery>;
|
|
307
308
|
queryOrganizations(filter?: Types.OrganizationFilter): Promise<Types.QueryOrganizationsQuery>;
|
|
309
|
+
queryOrganizationsExpanded(filter?: Types.OrganizationFilter, correlationId?: string): Promise<Types.QueryOrganizationsExpandedQuery>;
|
|
308
310
|
countOrganizations(filter?: Types.OrganizationFilter, correlationId?: string): Promise<Types.CountOrganizationsQuery>;
|
|
309
311
|
enrichOrganizations(connector: Types.EntityEnrichmentConnectorInput, filter?: Types.OrganizationFilter, correlationId?: string): Promise<Types.EnrichOrganizationsMutation>;
|
|
310
312
|
createPlace(place: Types.PlaceInput): Promise<Types.CreatePlaceMutation>;
|
|
@@ -452,9 +454,11 @@ declare class Graphlit {
|
|
|
452
454
|
deleteAllInvestmentFunds(filter?: Types.InvestmentFundFilter, isSynchronous?: boolean, correlationId?: string): Promise<Types.DeleteAllInvestmentFundsMutation>;
|
|
453
455
|
getInvestment(id: string, correlationId?: string): Promise<Types.GetInvestmentQuery>;
|
|
454
456
|
queryInvestments(filter?: Types.InvestmentFilter, correlationId?: string): Promise<Types.QueryInvestmentsQuery>;
|
|
457
|
+
queryInvestmentsExpanded(filter?: Types.InvestmentFilter, correlationId?: string): Promise<Types.QueryInvestmentsExpandedQuery>;
|
|
455
458
|
countInvestments(filter?: Types.InvestmentFilter, correlationId?: string): Promise<Types.CountInvestmentsQuery>;
|
|
456
459
|
getInvestmentFund(id: string, correlationId?: string): Promise<Types.GetInvestmentFundQuery>;
|
|
457
460
|
queryInvestmentFunds(filter?: Types.InvestmentFundFilter, correlationId?: string): Promise<Types.QueryInvestmentFundsQuery>;
|
|
461
|
+
queryInvestmentFundsExpanded(filter?: Types.InvestmentFundFilter, correlationId?: string): Promise<Types.QueryInvestmentFundsExpandedQuery>;
|
|
458
462
|
countInvestmentFunds(filter?: Types.InvestmentFundFilter, correlationId?: string): Promise<Types.CountInvestmentFundsQuery>;
|
|
459
463
|
/**
|
|
460
464
|
* Creates an event handler that supports UI streaming mode
|
package/dist/client.js
CHANGED
|
@@ -1378,6 +1378,12 @@ class Graphlit {
|
|
|
1378
1378
|
async queryPersons(filter) {
|
|
1379
1379
|
return this.queryAndCheckError(Documents.QueryPersons, { filter: filter });
|
|
1380
1380
|
}
|
|
1381
|
+
async queryPersonsExpanded(filter, correlationId) {
|
|
1382
|
+
return this.queryAndCheckError(Documents.QueryPersonsExpanded, {
|
|
1383
|
+
filter: filter,
|
|
1384
|
+
correlationId: correlationId,
|
|
1385
|
+
});
|
|
1386
|
+
}
|
|
1381
1387
|
async countPersons(filter, correlationId) {
|
|
1382
1388
|
return this.queryAndCheckError(Documents.CountPersons, {
|
|
1383
1389
|
filter: filter,
|
|
@@ -1419,6 +1425,12 @@ class Graphlit {
|
|
|
1419
1425
|
async queryOrganizations(filter) {
|
|
1420
1426
|
return this.queryAndCheckError(Documents.QueryOrganizations, { filter: filter });
|
|
1421
1427
|
}
|
|
1428
|
+
async queryOrganizationsExpanded(filter, correlationId) {
|
|
1429
|
+
return this.queryAndCheckError(Documents.QueryOrganizationsExpanded, {
|
|
1430
|
+
filter: filter,
|
|
1431
|
+
correlationId: correlationId,
|
|
1432
|
+
});
|
|
1433
|
+
}
|
|
1422
1434
|
async countOrganizations(filter, correlationId) {
|
|
1423
1435
|
return this.queryAndCheckError(Documents.CountOrganizations, {
|
|
1424
1436
|
filter: filter,
|
|
@@ -2039,6 +2051,12 @@ class Graphlit {
|
|
|
2039
2051
|
correlationId: correlationId,
|
|
2040
2052
|
});
|
|
2041
2053
|
}
|
|
2054
|
+
async queryInvestmentsExpanded(filter, correlationId) {
|
|
2055
|
+
return this.queryAndCheckError(Documents.QueryInvestmentsExpanded, {
|
|
2056
|
+
filter: filter,
|
|
2057
|
+
correlationId: correlationId,
|
|
2058
|
+
});
|
|
2059
|
+
}
|
|
2042
2060
|
async countInvestments(filter, correlationId) {
|
|
2043
2061
|
return this.queryAndCheckError(Documents.CountInvestments, {
|
|
2044
2062
|
filter: filter,
|
|
@@ -2054,6 +2072,12 @@ class Graphlit {
|
|
|
2054
2072
|
correlationId: correlationId,
|
|
2055
2073
|
});
|
|
2056
2074
|
}
|
|
2075
|
+
async queryInvestmentFundsExpanded(filter, correlationId) {
|
|
2076
|
+
return this.queryAndCheckError(Documents.QueryInvestmentFundsExpanded, {
|
|
2077
|
+
filter: filter,
|
|
2078
|
+
correlationId: correlationId,
|
|
2079
|
+
});
|
|
2080
|
+
}
|
|
2057
2081
|
async countInvestmentFunds(filter, correlationId) {
|
|
2058
2082
|
return this.queryAndCheckError(Documents.CountInvestmentFunds, {
|
|
2059
2083
|
filter: filter,
|
|
@@ -136,6 +136,7 @@ export declare const DeleteInvestment: import("graphql").DocumentNode;
|
|
|
136
136
|
export declare const DeleteInvestments: import("graphql").DocumentNode;
|
|
137
137
|
export declare const GetInvestment: import("graphql").DocumentNode;
|
|
138
138
|
export declare const QueryInvestments: import("graphql").DocumentNode;
|
|
139
|
+
export declare const QueryInvestmentsExpanded: import("graphql").DocumentNode;
|
|
139
140
|
export declare const UpdateInvestment: import("graphql").DocumentNode;
|
|
140
141
|
export declare const CountInvestmentFunds: import("graphql").DocumentNode;
|
|
141
142
|
export declare const CreateInvestmentFund: import("graphql").DocumentNode;
|
|
@@ -144,6 +145,7 @@ export declare const DeleteInvestmentFund: import("graphql").DocumentNode;
|
|
|
144
145
|
export declare const DeleteInvestmentFunds: import("graphql").DocumentNode;
|
|
145
146
|
export declare const GetInvestmentFund: import("graphql").DocumentNode;
|
|
146
147
|
export declare const QueryInvestmentFunds: import("graphql").DocumentNode;
|
|
148
|
+
export declare const QueryInvestmentFundsExpanded: import("graphql").DocumentNode;
|
|
147
149
|
export declare const UpdateInvestmentFund: import("graphql").DocumentNode;
|
|
148
150
|
export declare const CountLabels: import("graphql").DocumentNode;
|
|
149
151
|
export declare const CreateLabel: import("graphql").DocumentNode;
|
|
@@ -254,6 +256,7 @@ export declare const DeleteOrganizations: import("graphql").DocumentNode;
|
|
|
254
256
|
export declare const EnrichOrganizations: import("graphql").DocumentNode;
|
|
255
257
|
export declare const GetOrganization: import("graphql").DocumentNode;
|
|
256
258
|
export declare const QueryOrganizations: import("graphql").DocumentNode;
|
|
259
|
+
export declare const QueryOrganizationsExpanded: import("graphql").DocumentNode;
|
|
257
260
|
export declare const UpdateOrganization: import("graphql").DocumentNode;
|
|
258
261
|
export declare const CountPersons: import("graphql").DocumentNode;
|
|
259
262
|
export declare const CreatePerson: import("graphql").DocumentNode;
|
|
@@ -263,6 +266,7 @@ export declare const DeletePersons: import("graphql").DocumentNode;
|
|
|
263
266
|
export declare const EnrichPersons: import("graphql").DocumentNode;
|
|
264
267
|
export declare const GetPerson: import("graphql").DocumentNode;
|
|
265
268
|
export declare const QueryPersons: import("graphql").DocumentNode;
|
|
269
|
+
export declare const QueryPersonsExpanded: import("graphql").DocumentNode;
|
|
266
270
|
export declare const UpdatePerson: import("graphql").DocumentNode;
|
|
267
271
|
export declare const CountPlaces: import("graphql").DocumentNode;
|
|
268
272
|
export declare const CreatePlace: import("graphql").DocumentNode;
|
|
@@ -8260,6 +8260,96 @@ export const QueryInvestments = gql `
|
|
|
8260
8260
|
status
|
|
8261
8261
|
stage
|
|
8262
8262
|
investmentDate
|
|
8263
|
+
roundSize
|
|
8264
|
+
roundSizeCurrency
|
|
8265
|
+
postValuation
|
|
8266
|
+
postValuationCurrency
|
|
8267
|
+
sharesOwned
|
|
8268
|
+
vehicle
|
|
8269
|
+
entryPricePerShare
|
|
8270
|
+
currentPricePerShare
|
|
8271
|
+
discountPercent
|
|
8272
|
+
proRataRights
|
|
8273
|
+
}
|
|
8274
|
+
}
|
|
8275
|
+
}
|
|
8276
|
+
`;
|
|
8277
|
+
export const QueryInvestmentsExpanded = gql `
|
|
8278
|
+
query QueryInvestmentsExpanded($filter: InvestmentFilter, $correlationId: String) {
|
|
8279
|
+
investments(filter: $filter, correlationId: $correlationId) {
|
|
8280
|
+
results {
|
|
8281
|
+
id
|
|
8282
|
+
name
|
|
8283
|
+
creationDate
|
|
8284
|
+
modifiedDate
|
|
8285
|
+
relevance
|
|
8286
|
+
owner {
|
|
8287
|
+
id
|
|
8288
|
+
}
|
|
8289
|
+
state
|
|
8290
|
+
alternateNames
|
|
8291
|
+
uri
|
|
8292
|
+
description
|
|
8293
|
+
identifier
|
|
8294
|
+
thing
|
|
8295
|
+
feeds {
|
|
8296
|
+
id
|
|
8297
|
+
name
|
|
8298
|
+
}
|
|
8299
|
+
links {
|
|
8300
|
+
uri
|
|
8301
|
+
linkType
|
|
8302
|
+
excerpts
|
|
8303
|
+
}
|
|
8304
|
+
workflow {
|
|
8305
|
+
id
|
|
8306
|
+
name
|
|
8307
|
+
}
|
|
8308
|
+
location {
|
|
8309
|
+
latitude
|
|
8310
|
+
longitude
|
|
8311
|
+
}
|
|
8312
|
+
h3 {
|
|
8313
|
+
h3r0
|
|
8314
|
+
h3r1
|
|
8315
|
+
h3r2
|
|
8316
|
+
h3r3
|
|
8317
|
+
h3r4
|
|
8318
|
+
h3r5
|
|
8319
|
+
h3r6
|
|
8320
|
+
h3r7
|
|
8321
|
+
h3r8
|
|
8322
|
+
h3r9
|
|
8323
|
+
h3r10
|
|
8324
|
+
h3r11
|
|
8325
|
+
h3r12
|
|
8326
|
+
h3r13
|
|
8327
|
+
h3r14
|
|
8328
|
+
h3r15
|
|
8329
|
+
}
|
|
8330
|
+
amount
|
|
8331
|
+
amountCurrency
|
|
8332
|
+
status
|
|
8333
|
+
stage
|
|
8334
|
+
investmentDate
|
|
8335
|
+
roundSize
|
|
8336
|
+
roundSizeCurrency
|
|
8337
|
+
postValuation
|
|
8338
|
+
postValuationCurrency
|
|
8339
|
+
sharesOwned
|
|
8340
|
+
vehicle
|
|
8341
|
+
entryPricePerShare
|
|
8342
|
+
currentPricePerShare
|
|
8343
|
+
discountPercent
|
|
8344
|
+
proRataRights
|
|
8345
|
+
investor {
|
|
8346
|
+
id
|
|
8347
|
+
name
|
|
8348
|
+
}
|
|
8349
|
+
organization {
|
|
8350
|
+
id
|
|
8351
|
+
name
|
|
8352
|
+
}
|
|
8263
8353
|
}
|
|
8264
8354
|
}
|
|
8265
8355
|
}
|
|
@@ -8446,6 +8536,89 @@ export const QueryInvestmentFunds = gql `
|
|
|
8446
8536
|
}
|
|
8447
8537
|
amount
|
|
8448
8538
|
amountCurrency
|
|
8539
|
+
fundType
|
|
8540
|
+
vintage
|
|
8541
|
+
targetSize
|
|
8542
|
+
targetSizeCurrency
|
|
8543
|
+
}
|
|
8544
|
+
}
|
|
8545
|
+
}
|
|
8546
|
+
`;
|
|
8547
|
+
export const QueryInvestmentFundsExpanded = gql `
|
|
8548
|
+
query QueryInvestmentFundsExpanded($filter: InvestmentFundFilter, $correlationId: String) {
|
|
8549
|
+
investmentFunds(filter: $filter, correlationId: $correlationId) {
|
|
8550
|
+
results {
|
|
8551
|
+
id
|
|
8552
|
+
name
|
|
8553
|
+
creationDate
|
|
8554
|
+
modifiedDate
|
|
8555
|
+
relevance
|
|
8556
|
+
owner {
|
|
8557
|
+
id
|
|
8558
|
+
}
|
|
8559
|
+
state
|
|
8560
|
+
alternateNames
|
|
8561
|
+
uri
|
|
8562
|
+
description
|
|
8563
|
+
identifier
|
|
8564
|
+
thing
|
|
8565
|
+
feeds {
|
|
8566
|
+
id
|
|
8567
|
+
name
|
|
8568
|
+
}
|
|
8569
|
+
links {
|
|
8570
|
+
uri
|
|
8571
|
+
linkType
|
|
8572
|
+
excerpts
|
|
8573
|
+
}
|
|
8574
|
+
workflow {
|
|
8575
|
+
id
|
|
8576
|
+
name
|
|
8577
|
+
}
|
|
8578
|
+
location {
|
|
8579
|
+
latitude
|
|
8580
|
+
longitude
|
|
8581
|
+
}
|
|
8582
|
+
h3 {
|
|
8583
|
+
h3r0
|
|
8584
|
+
h3r1
|
|
8585
|
+
h3r2
|
|
8586
|
+
h3r3
|
|
8587
|
+
h3r4
|
|
8588
|
+
h3r5
|
|
8589
|
+
h3r6
|
|
8590
|
+
h3r7
|
|
8591
|
+
h3r8
|
|
8592
|
+
h3r9
|
|
8593
|
+
h3r10
|
|
8594
|
+
h3r11
|
|
8595
|
+
h3r12
|
|
8596
|
+
h3r13
|
|
8597
|
+
h3r14
|
|
8598
|
+
h3r15
|
|
8599
|
+
}
|
|
8600
|
+
amount
|
|
8601
|
+
amountCurrency
|
|
8602
|
+
fundType
|
|
8603
|
+
vintage
|
|
8604
|
+
targetSize
|
|
8605
|
+
targetSizeCurrency
|
|
8606
|
+
organizations {
|
|
8607
|
+
id
|
|
8608
|
+
name
|
|
8609
|
+
}
|
|
8610
|
+
investments {
|
|
8611
|
+
id
|
|
8612
|
+
name
|
|
8613
|
+
}
|
|
8614
|
+
parentFund {
|
|
8615
|
+
id
|
|
8616
|
+
name
|
|
8617
|
+
}
|
|
8618
|
+
childFunds {
|
|
8619
|
+
id
|
|
8620
|
+
name
|
|
8621
|
+
}
|
|
8449
8622
|
}
|
|
8450
8623
|
}
|
|
8451
8624
|
}
|
|
@@ -10609,6 +10782,115 @@ export const QueryOrganizations = gql `
|
|
|
10609
10782
|
}
|
|
10610
10783
|
}
|
|
10611
10784
|
`;
|
|
10785
|
+
export const QueryOrganizationsExpanded = gql `
|
|
10786
|
+
query QueryOrganizationsExpanded($filter: OrganizationFilter, $correlationId: String) {
|
|
10787
|
+
organizations(filter: $filter, correlationId: $correlationId) {
|
|
10788
|
+
results {
|
|
10789
|
+
id
|
|
10790
|
+
name
|
|
10791
|
+
creationDate
|
|
10792
|
+
modifiedDate
|
|
10793
|
+
relevance
|
|
10794
|
+
owner {
|
|
10795
|
+
id
|
|
10796
|
+
}
|
|
10797
|
+
state
|
|
10798
|
+
alternateNames
|
|
10799
|
+
uri
|
|
10800
|
+
description
|
|
10801
|
+
identifier
|
|
10802
|
+
thing
|
|
10803
|
+
feeds {
|
|
10804
|
+
id
|
|
10805
|
+
name
|
|
10806
|
+
}
|
|
10807
|
+
links {
|
|
10808
|
+
uri
|
|
10809
|
+
linkType
|
|
10810
|
+
excerpts
|
|
10811
|
+
}
|
|
10812
|
+
workflow {
|
|
10813
|
+
id
|
|
10814
|
+
name
|
|
10815
|
+
}
|
|
10816
|
+
location {
|
|
10817
|
+
latitude
|
|
10818
|
+
longitude
|
|
10819
|
+
}
|
|
10820
|
+
h3 {
|
|
10821
|
+
h3r0
|
|
10822
|
+
h3r1
|
|
10823
|
+
h3r2
|
|
10824
|
+
h3r3
|
|
10825
|
+
h3r4
|
|
10826
|
+
h3r5
|
|
10827
|
+
h3r6
|
|
10828
|
+
h3r7
|
|
10829
|
+
h3r8
|
|
10830
|
+
h3r9
|
|
10831
|
+
h3r10
|
|
10832
|
+
h3r11
|
|
10833
|
+
h3r12
|
|
10834
|
+
h3r13
|
|
10835
|
+
h3r14
|
|
10836
|
+
h3r15
|
|
10837
|
+
}
|
|
10838
|
+
address {
|
|
10839
|
+
streetAddress
|
|
10840
|
+
city
|
|
10841
|
+
region
|
|
10842
|
+
country
|
|
10843
|
+
postalCode
|
|
10844
|
+
}
|
|
10845
|
+
foundingDate
|
|
10846
|
+
email
|
|
10847
|
+
telephone
|
|
10848
|
+
legalName
|
|
10849
|
+
industries
|
|
10850
|
+
revenue
|
|
10851
|
+
revenueCurrency
|
|
10852
|
+
investment
|
|
10853
|
+
investmentCurrency
|
|
10854
|
+
founders {
|
|
10855
|
+
id
|
|
10856
|
+
name
|
|
10857
|
+
}
|
|
10858
|
+
employees {
|
|
10859
|
+
id
|
|
10860
|
+
name
|
|
10861
|
+
}
|
|
10862
|
+
members {
|
|
10863
|
+
id
|
|
10864
|
+
name
|
|
10865
|
+
}
|
|
10866
|
+
parentOrganization {
|
|
10867
|
+
id
|
|
10868
|
+
name
|
|
10869
|
+
}
|
|
10870
|
+
memberOf {
|
|
10871
|
+
id
|
|
10872
|
+
name
|
|
10873
|
+
}
|
|
10874
|
+
subOrganizations {
|
|
10875
|
+
id
|
|
10876
|
+
name
|
|
10877
|
+
}
|
|
10878
|
+
locations {
|
|
10879
|
+
id
|
|
10880
|
+
name
|
|
10881
|
+
}
|
|
10882
|
+
investmentsReceived {
|
|
10883
|
+
id
|
|
10884
|
+
name
|
|
10885
|
+
}
|
|
10886
|
+
investorFunds {
|
|
10887
|
+
id
|
|
10888
|
+
name
|
|
10889
|
+
}
|
|
10890
|
+
}
|
|
10891
|
+
}
|
|
10892
|
+
}
|
|
10893
|
+
`;
|
|
10612
10894
|
export const UpdateOrganization = gql `
|
|
10613
10895
|
mutation UpdateOrganization($organization: OrganizationUpdateInput!) {
|
|
10614
10896
|
updateOrganization(organization: $organization) {
|
|
@@ -10845,6 +11127,110 @@ export const QueryPersons = gql `
|
|
|
10845
11127
|
}
|
|
10846
11128
|
}
|
|
10847
11129
|
`;
|
|
11130
|
+
export const QueryPersonsExpanded = gql `
|
|
11131
|
+
query QueryPersonsExpanded($filter: PersonFilter, $correlationId: String) {
|
|
11132
|
+
persons(filter: $filter, correlationId: $correlationId) {
|
|
11133
|
+
results {
|
|
11134
|
+
id
|
|
11135
|
+
name
|
|
11136
|
+
creationDate
|
|
11137
|
+
modifiedDate
|
|
11138
|
+
relevance
|
|
11139
|
+
owner {
|
|
11140
|
+
id
|
|
11141
|
+
}
|
|
11142
|
+
state
|
|
11143
|
+
alternateNames
|
|
11144
|
+
uri
|
|
11145
|
+
description
|
|
11146
|
+
identifier
|
|
11147
|
+
thing
|
|
11148
|
+
feeds {
|
|
11149
|
+
id
|
|
11150
|
+
name
|
|
11151
|
+
}
|
|
11152
|
+
links {
|
|
11153
|
+
uri
|
|
11154
|
+
linkType
|
|
11155
|
+
excerpts
|
|
11156
|
+
}
|
|
11157
|
+
workflow {
|
|
11158
|
+
id
|
|
11159
|
+
name
|
|
11160
|
+
}
|
|
11161
|
+
location {
|
|
11162
|
+
latitude
|
|
11163
|
+
longitude
|
|
11164
|
+
}
|
|
11165
|
+
h3 {
|
|
11166
|
+
h3r0
|
|
11167
|
+
h3r1
|
|
11168
|
+
h3r2
|
|
11169
|
+
h3r3
|
|
11170
|
+
h3r4
|
|
11171
|
+
h3r5
|
|
11172
|
+
h3r6
|
|
11173
|
+
h3r7
|
|
11174
|
+
h3r8
|
|
11175
|
+
h3r9
|
|
11176
|
+
h3r10
|
|
11177
|
+
h3r11
|
|
11178
|
+
h3r12
|
|
11179
|
+
h3r13
|
|
11180
|
+
h3r14
|
|
11181
|
+
h3r15
|
|
11182
|
+
}
|
|
11183
|
+
address {
|
|
11184
|
+
streetAddress
|
|
11185
|
+
city
|
|
11186
|
+
region
|
|
11187
|
+
country
|
|
11188
|
+
postalCode
|
|
11189
|
+
}
|
|
11190
|
+
email
|
|
11191
|
+
givenName
|
|
11192
|
+
familyName
|
|
11193
|
+
phoneNumber
|
|
11194
|
+
birthDate
|
|
11195
|
+
title
|
|
11196
|
+
occupation
|
|
11197
|
+
education
|
|
11198
|
+
worksFor {
|
|
11199
|
+
id
|
|
11200
|
+
name
|
|
11201
|
+
}
|
|
11202
|
+
affiliation {
|
|
11203
|
+
id
|
|
11204
|
+
name
|
|
11205
|
+
}
|
|
11206
|
+
memberOf {
|
|
11207
|
+
id
|
|
11208
|
+
name
|
|
11209
|
+
}
|
|
11210
|
+
alumniOf {
|
|
11211
|
+
id
|
|
11212
|
+
name
|
|
11213
|
+
}
|
|
11214
|
+
birthPlace {
|
|
11215
|
+
id
|
|
11216
|
+
name
|
|
11217
|
+
}
|
|
11218
|
+
deathPlace {
|
|
11219
|
+
id
|
|
11220
|
+
name
|
|
11221
|
+
}
|
|
11222
|
+
homeLocation {
|
|
11223
|
+
id
|
|
11224
|
+
name
|
|
11225
|
+
}
|
|
11226
|
+
workLocation {
|
|
11227
|
+
id
|
|
11228
|
+
name
|
|
11229
|
+
}
|
|
11230
|
+
}
|
|
11231
|
+
}
|
|
11232
|
+
}
|
|
11233
|
+
`;
|
|
10848
11234
|
export const UpdatePerson = gql `
|
|
10849
11235
|
mutation UpdatePerson($person: PersonUpdateInput!) {
|
|
10850
11236
|
updatePerson(person: $person) {
|
|
@@ -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
|
}
|
|
@@ -26939,6 +26941,16 @@ export type QueryInvestmentsQuery = {
|
|
|
26939
26941
|
status?: string | null;
|
|
26940
26942
|
stage?: string | null;
|
|
26941
26943
|
investmentDate?: any | null;
|
|
26944
|
+
roundSize?: any | null;
|
|
26945
|
+
roundSizeCurrency?: string | null;
|
|
26946
|
+
postValuation?: any | null;
|
|
26947
|
+
postValuationCurrency?: string | null;
|
|
26948
|
+
sharesOwned?: any | null;
|
|
26949
|
+
vehicle?: string | null;
|
|
26950
|
+
entryPricePerShare?: any | null;
|
|
26951
|
+
currentPricePerShare?: any | null;
|
|
26952
|
+
discountPercent?: any | null;
|
|
26953
|
+
proRataRights?: boolean | null;
|
|
26942
26954
|
owner: {
|
|
26943
26955
|
__typename?: 'Owner';
|
|
26944
26956
|
id: string;
|
|
@@ -26986,6 +26998,99 @@ export type QueryInvestmentsQuery = {
|
|
|
26986
26998
|
} | null> | null;
|
|
26987
26999
|
} | null;
|
|
26988
27000
|
};
|
|
27001
|
+
export type QueryInvestmentsExpandedQueryVariables = Exact<{
|
|
27002
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
27003
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27004
|
+
}>;
|
|
27005
|
+
export type QueryInvestmentsExpandedQuery = {
|
|
27006
|
+
__typename?: 'Query';
|
|
27007
|
+
investments?: {
|
|
27008
|
+
__typename?: 'InvestmentResults';
|
|
27009
|
+
results?: Array<{
|
|
27010
|
+
__typename?: 'Investment';
|
|
27011
|
+
id: string;
|
|
27012
|
+
name: string;
|
|
27013
|
+
creationDate: any;
|
|
27014
|
+
modifiedDate?: any | null;
|
|
27015
|
+
relevance?: number | null;
|
|
27016
|
+
state: EntityState;
|
|
27017
|
+
alternateNames?: Array<string | null> | null;
|
|
27018
|
+
uri?: any | null;
|
|
27019
|
+
description?: string | null;
|
|
27020
|
+
identifier?: string | null;
|
|
27021
|
+
thing?: string | null;
|
|
27022
|
+
amount?: any | null;
|
|
27023
|
+
amountCurrency?: string | null;
|
|
27024
|
+
status?: string | null;
|
|
27025
|
+
stage?: string | null;
|
|
27026
|
+
investmentDate?: any | null;
|
|
27027
|
+
roundSize?: any | null;
|
|
27028
|
+
roundSizeCurrency?: string | null;
|
|
27029
|
+
postValuation?: any | null;
|
|
27030
|
+
postValuationCurrency?: string | null;
|
|
27031
|
+
sharesOwned?: any | null;
|
|
27032
|
+
vehicle?: string | null;
|
|
27033
|
+
entryPricePerShare?: any | null;
|
|
27034
|
+
currentPricePerShare?: any | null;
|
|
27035
|
+
discountPercent?: any | null;
|
|
27036
|
+
proRataRights?: boolean | null;
|
|
27037
|
+
owner: {
|
|
27038
|
+
__typename?: 'Owner';
|
|
27039
|
+
id: string;
|
|
27040
|
+
};
|
|
27041
|
+
feeds?: Array<{
|
|
27042
|
+
__typename?: 'Feed';
|
|
27043
|
+
id: string;
|
|
27044
|
+
name: string;
|
|
27045
|
+
} | null> | null;
|
|
27046
|
+
links?: Array<{
|
|
27047
|
+
__typename?: 'LinkReference';
|
|
27048
|
+
uri?: any | null;
|
|
27049
|
+
linkType?: LinkTypes | null;
|
|
27050
|
+
excerpts?: string | null;
|
|
27051
|
+
} | null> | null;
|
|
27052
|
+
workflow?: {
|
|
27053
|
+
__typename?: 'Workflow';
|
|
27054
|
+
id: string;
|
|
27055
|
+
name: string;
|
|
27056
|
+
} | null;
|
|
27057
|
+
location?: {
|
|
27058
|
+
__typename?: 'Point';
|
|
27059
|
+
latitude?: number | null;
|
|
27060
|
+
longitude?: number | null;
|
|
27061
|
+
} | null;
|
|
27062
|
+
h3?: {
|
|
27063
|
+
__typename?: 'H3';
|
|
27064
|
+
h3r0?: string | null;
|
|
27065
|
+
h3r1?: string | null;
|
|
27066
|
+
h3r2?: string | null;
|
|
27067
|
+
h3r3?: string | null;
|
|
27068
|
+
h3r4?: string | null;
|
|
27069
|
+
h3r5?: string | null;
|
|
27070
|
+
h3r6?: string | null;
|
|
27071
|
+
h3r7?: string | null;
|
|
27072
|
+
h3r8?: string | null;
|
|
27073
|
+
h3r9?: string | null;
|
|
27074
|
+
h3r10?: string | null;
|
|
27075
|
+
h3r11?: string | null;
|
|
27076
|
+
h3r12?: string | null;
|
|
27077
|
+
h3r13?: string | null;
|
|
27078
|
+
h3r14?: string | null;
|
|
27079
|
+
h3r15?: string | null;
|
|
27080
|
+
} | null;
|
|
27081
|
+
investor?: {
|
|
27082
|
+
__typename?: 'InvestmentFund';
|
|
27083
|
+
id: string;
|
|
27084
|
+
name: string;
|
|
27085
|
+
} | null;
|
|
27086
|
+
organization?: {
|
|
27087
|
+
__typename?: 'Organization';
|
|
27088
|
+
id: string;
|
|
27089
|
+
name: string;
|
|
27090
|
+
} | null;
|
|
27091
|
+
} | null> | null;
|
|
27092
|
+
} | null;
|
|
27093
|
+
};
|
|
26989
27094
|
export type UpdateInvestmentMutationVariables = Exact<{
|
|
26990
27095
|
investment: InvestmentUpdateInput;
|
|
26991
27096
|
}>;
|
|
@@ -27168,6 +27273,10 @@ export type QueryInvestmentFundsQuery = {
|
|
|
27168
27273
|
thing?: string | null;
|
|
27169
27274
|
amount?: any | null;
|
|
27170
27275
|
amountCurrency?: string | null;
|
|
27276
|
+
fundType?: string | null;
|
|
27277
|
+
vintage?: number | null;
|
|
27278
|
+
targetSize?: any | null;
|
|
27279
|
+
targetSizeCurrency?: string | null;
|
|
27171
27280
|
owner: {
|
|
27172
27281
|
__typename?: 'Owner';
|
|
27173
27282
|
id: string;
|
|
@@ -27215,6 +27324,100 @@ export type QueryInvestmentFundsQuery = {
|
|
|
27215
27324
|
} | null> | null;
|
|
27216
27325
|
} | null;
|
|
27217
27326
|
};
|
|
27327
|
+
export type QueryInvestmentFundsExpandedQueryVariables = Exact<{
|
|
27328
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
27329
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27330
|
+
}>;
|
|
27331
|
+
export type QueryInvestmentFundsExpandedQuery = {
|
|
27332
|
+
__typename?: 'Query';
|
|
27333
|
+
investmentFunds?: {
|
|
27334
|
+
__typename?: 'InvestmentFundResults';
|
|
27335
|
+
results?: Array<{
|
|
27336
|
+
__typename?: 'InvestmentFund';
|
|
27337
|
+
id: string;
|
|
27338
|
+
name: string;
|
|
27339
|
+
creationDate: any;
|
|
27340
|
+
modifiedDate?: any | null;
|
|
27341
|
+
relevance?: number | null;
|
|
27342
|
+
state: EntityState;
|
|
27343
|
+
alternateNames?: Array<string | null> | null;
|
|
27344
|
+
uri?: any | null;
|
|
27345
|
+
description?: string | null;
|
|
27346
|
+
identifier?: string | null;
|
|
27347
|
+
thing?: string | null;
|
|
27348
|
+
amount?: any | null;
|
|
27349
|
+
amountCurrency?: string | null;
|
|
27350
|
+
fundType?: string | null;
|
|
27351
|
+
vintage?: number | null;
|
|
27352
|
+
targetSize?: any | null;
|
|
27353
|
+
targetSizeCurrency?: string | null;
|
|
27354
|
+
owner: {
|
|
27355
|
+
__typename?: 'Owner';
|
|
27356
|
+
id: string;
|
|
27357
|
+
};
|
|
27358
|
+
feeds?: Array<{
|
|
27359
|
+
__typename?: 'Feed';
|
|
27360
|
+
id: string;
|
|
27361
|
+
name: string;
|
|
27362
|
+
} | null> | null;
|
|
27363
|
+
links?: Array<{
|
|
27364
|
+
__typename?: 'LinkReference';
|
|
27365
|
+
uri?: any | null;
|
|
27366
|
+
linkType?: LinkTypes | null;
|
|
27367
|
+
excerpts?: string | null;
|
|
27368
|
+
} | null> | null;
|
|
27369
|
+
workflow?: {
|
|
27370
|
+
__typename?: 'Workflow';
|
|
27371
|
+
id: string;
|
|
27372
|
+
name: string;
|
|
27373
|
+
} | null;
|
|
27374
|
+
location?: {
|
|
27375
|
+
__typename?: 'Point';
|
|
27376
|
+
latitude?: number | null;
|
|
27377
|
+
longitude?: number | null;
|
|
27378
|
+
} | null;
|
|
27379
|
+
h3?: {
|
|
27380
|
+
__typename?: 'H3';
|
|
27381
|
+
h3r0?: string | null;
|
|
27382
|
+
h3r1?: string | null;
|
|
27383
|
+
h3r2?: string | null;
|
|
27384
|
+
h3r3?: string | null;
|
|
27385
|
+
h3r4?: string | null;
|
|
27386
|
+
h3r5?: string | null;
|
|
27387
|
+
h3r6?: string | null;
|
|
27388
|
+
h3r7?: string | null;
|
|
27389
|
+
h3r8?: string | null;
|
|
27390
|
+
h3r9?: string | null;
|
|
27391
|
+
h3r10?: string | null;
|
|
27392
|
+
h3r11?: string | null;
|
|
27393
|
+
h3r12?: string | null;
|
|
27394
|
+
h3r13?: string | null;
|
|
27395
|
+
h3r14?: string | null;
|
|
27396
|
+
h3r15?: string | null;
|
|
27397
|
+
} | null;
|
|
27398
|
+
organizations?: Array<{
|
|
27399
|
+
__typename?: 'Organization';
|
|
27400
|
+
id: string;
|
|
27401
|
+
name: string;
|
|
27402
|
+
} | null> | null;
|
|
27403
|
+
investments?: Array<{
|
|
27404
|
+
__typename?: 'Investment';
|
|
27405
|
+
id: string;
|
|
27406
|
+
name: string;
|
|
27407
|
+
} | null> | null;
|
|
27408
|
+
parentFund?: {
|
|
27409
|
+
__typename?: 'InvestmentFund';
|
|
27410
|
+
id: string;
|
|
27411
|
+
name: string;
|
|
27412
|
+
} | null;
|
|
27413
|
+
childFunds?: Array<{
|
|
27414
|
+
__typename?: 'InvestmentFund';
|
|
27415
|
+
id: string;
|
|
27416
|
+
name: string;
|
|
27417
|
+
} | null> | null;
|
|
27418
|
+
} | null> | null;
|
|
27419
|
+
} | null;
|
|
27420
|
+
};
|
|
27218
27421
|
export type UpdateInvestmentFundMutationVariables = Exact<{
|
|
27219
27422
|
investmentFund: InvestmentFundUpdateInput;
|
|
27220
27423
|
}>;
|
|
@@ -29902,6 +30105,136 @@ export type QueryOrganizationsQuery = {
|
|
|
29902
30105
|
} | null> | null;
|
|
29903
30106
|
} | null;
|
|
29904
30107
|
};
|
|
30108
|
+
export type QueryOrganizationsExpandedQueryVariables = Exact<{
|
|
30109
|
+
filter?: InputMaybe<OrganizationFilter>;
|
|
30110
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30111
|
+
}>;
|
|
30112
|
+
export type QueryOrganizationsExpandedQuery = {
|
|
30113
|
+
__typename?: 'Query';
|
|
30114
|
+
organizations?: {
|
|
30115
|
+
__typename?: 'OrganizationResults';
|
|
30116
|
+
results?: Array<{
|
|
30117
|
+
__typename?: 'Organization';
|
|
30118
|
+
id: string;
|
|
30119
|
+
name: string;
|
|
30120
|
+
creationDate: any;
|
|
30121
|
+
modifiedDate?: any | null;
|
|
30122
|
+
relevance?: number | null;
|
|
30123
|
+
state: EntityState;
|
|
30124
|
+
alternateNames?: Array<string | null> | null;
|
|
30125
|
+
uri?: any | null;
|
|
30126
|
+
description?: string | null;
|
|
30127
|
+
identifier?: string | null;
|
|
30128
|
+
thing?: string | null;
|
|
30129
|
+
foundingDate?: any | null;
|
|
30130
|
+
email?: string | null;
|
|
30131
|
+
telephone?: string | null;
|
|
30132
|
+
legalName?: string | null;
|
|
30133
|
+
industries?: Array<string | null> | null;
|
|
30134
|
+
revenue?: any | null;
|
|
30135
|
+
revenueCurrency?: string | null;
|
|
30136
|
+
investment?: any | null;
|
|
30137
|
+
investmentCurrency?: string | null;
|
|
30138
|
+
owner: {
|
|
30139
|
+
__typename?: 'Owner';
|
|
30140
|
+
id: string;
|
|
30141
|
+
};
|
|
30142
|
+
feeds?: Array<{
|
|
30143
|
+
__typename?: 'Feed';
|
|
30144
|
+
id: string;
|
|
30145
|
+
name: string;
|
|
30146
|
+
} | null> | null;
|
|
30147
|
+
links?: Array<{
|
|
30148
|
+
__typename?: 'LinkReference';
|
|
30149
|
+
uri?: any | null;
|
|
30150
|
+
linkType?: LinkTypes | null;
|
|
30151
|
+
excerpts?: string | null;
|
|
30152
|
+
} | null> | null;
|
|
30153
|
+
workflow?: {
|
|
30154
|
+
__typename?: 'Workflow';
|
|
30155
|
+
id: string;
|
|
30156
|
+
name: string;
|
|
30157
|
+
} | null;
|
|
30158
|
+
location?: {
|
|
30159
|
+
__typename?: 'Point';
|
|
30160
|
+
latitude?: number | null;
|
|
30161
|
+
longitude?: number | null;
|
|
30162
|
+
} | null;
|
|
30163
|
+
h3?: {
|
|
30164
|
+
__typename?: 'H3';
|
|
30165
|
+
h3r0?: string | null;
|
|
30166
|
+
h3r1?: string | null;
|
|
30167
|
+
h3r2?: string | null;
|
|
30168
|
+
h3r3?: string | null;
|
|
30169
|
+
h3r4?: string | null;
|
|
30170
|
+
h3r5?: string | null;
|
|
30171
|
+
h3r6?: string | null;
|
|
30172
|
+
h3r7?: string | null;
|
|
30173
|
+
h3r8?: string | null;
|
|
30174
|
+
h3r9?: string | null;
|
|
30175
|
+
h3r10?: string | null;
|
|
30176
|
+
h3r11?: string | null;
|
|
30177
|
+
h3r12?: string | null;
|
|
30178
|
+
h3r13?: string | null;
|
|
30179
|
+
h3r14?: string | null;
|
|
30180
|
+
h3r15?: string | null;
|
|
30181
|
+
} | null;
|
|
30182
|
+
address?: {
|
|
30183
|
+
__typename?: 'Address';
|
|
30184
|
+
streetAddress?: string | null;
|
|
30185
|
+
city?: string | null;
|
|
30186
|
+
region?: string | null;
|
|
30187
|
+
country?: string | null;
|
|
30188
|
+
postalCode?: string | null;
|
|
30189
|
+
} | null;
|
|
30190
|
+
founders?: Array<{
|
|
30191
|
+
__typename?: 'Person';
|
|
30192
|
+
id: string;
|
|
30193
|
+
name: string;
|
|
30194
|
+
} | null> | null;
|
|
30195
|
+
employees?: Array<{
|
|
30196
|
+
__typename?: 'Person';
|
|
30197
|
+
id: string;
|
|
30198
|
+
name: string;
|
|
30199
|
+
} | null> | null;
|
|
30200
|
+
members?: Array<{
|
|
30201
|
+
__typename?: 'Person';
|
|
30202
|
+
id: string;
|
|
30203
|
+
name: string;
|
|
30204
|
+
} | null> | null;
|
|
30205
|
+
parentOrganization?: {
|
|
30206
|
+
__typename?: 'Organization';
|
|
30207
|
+
id: string;
|
|
30208
|
+
name: string;
|
|
30209
|
+
} | null;
|
|
30210
|
+
memberOf?: Array<{
|
|
30211
|
+
__typename?: 'Organization';
|
|
30212
|
+
id: string;
|
|
30213
|
+
name: string;
|
|
30214
|
+
} | null> | null;
|
|
30215
|
+
subOrganizations?: Array<{
|
|
30216
|
+
__typename?: 'Organization';
|
|
30217
|
+
id: string;
|
|
30218
|
+
name: string;
|
|
30219
|
+
} | null> | null;
|
|
30220
|
+
locations?: Array<{
|
|
30221
|
+
__typename?: 'Place';
|
|
30222
|
+
id: string;
|
|
30223
|
+
name: string;
|
|
30224
|
+
} | null> | null;
|
|
30225
|
+
investmentsReceived?: Array<{
|
|
30226
|
+
__typename?: 'Investment';
|
|
30227
|
+
id: string;
|
|
30228
|
+
name: string;
|
|
30229
|
+
} | null> | null;
|
|
30230
|
+
investorFunds?: Array<{
|
|
30231
|
+
__typename?: 'InvestmentFund';
|
|
30232
|
+
id: string;
|
|
30233
|
+
name: string;
|
|
30234
|
+
} | null> | null;
|
|
30235
|
+
} | null> | null;
|
|
30236
|
+
} | null;
|
|
30237
|
+
};
|
|
29905
30238
|
export type UpdateOrganizationMutationVariables = Exact<{
|
|
29906
30239
|
organization: OrganizationUpdateInput;
|
|
29907
30240
|
}>;
|
|
@@ -30188,6 +30521,130 @@ export type QueryPersonsQuery = {
|
|
|
30188
30521
|
} | null> | null;
|
|
30189
30522
|
} | null;
|
|
30190
30523
|
};
|
|
30524
|
+
export type QueryPersonsExpandedQueryVariables = Exact<{
|
|
30525
|
+
filter?: InputMaybe<PersonFilter>;
|
|
30526
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30527
|
+
}>;
|
|
30528
|
+
export type QueryPersonsExpandedQuery = {
|
|
30529
|
+
__typename?: 'Query';
|
|
30530
|
+
persons?: {
|
|
30531
|
+
__typename?: 'PersonResults';
|
|
30532
|
+
results?: Array<{
|
|
30533
|
+
__typename?: 'Person';
|
|
30534
|
+
id: string;
|
|
30535
|
+
name: string;
|
|
30536
|
+
creationDate: any;
|
|
30537
|
+
modifiedDate?: any | null;
|
|
30538
|
+
relevance?: number | null;
|
|
30539
|
+
state: EntityState;
|
|
30540
|
+
alternateNames?: Array<string | null> | null;
|
|
30541
|
+
uri?: any | null;
|
|
30542
|
+
description?: string | null;
|
|
30543
|
+
identifier?: string | null;
|
|
30544
|
+
thing?: string | null;
|
|
30545
|
+
email?: string | null;
|
|
30546
|
+
givenName?: string | null;
|
|
30547
|
+
familyName?: string | null;
|
|
30548
|
+
phoneNumber?: string | null;
|
|
30549
|
+
birthDate?: any | null;
|
|
30550
|
+
title?: string | null;
|
|
30551
|
+
occupation?: string | null;
|
|
30552
|
+
education?: string | null;
|
|
30553
|
+
owner: {
|
|
30554
|
+
__typename?: 'Owner';
|
|
30555
|
+
id: string;
|
|
30556
|
+
};
|
|
30557
|
+
feeds?: Array<{
|
|
30558
|
+
__typename?: 'Feed';
|
|
30559
|
+
id: string;
|
|
30560
|
+
name: string;
|
|
30561
|
+
} | null> | null;
|
|
30562
|
+
links?: Array<{
|
|
30563
|
+
__typename?: 'LinkReference';
|
|
30564
|
+
uri?: any | null;
|
|
30565
|
+
linkType?: LinkTypes | null;
|
|
30566
|
+
excerpts?: string | null;
|
|
30567
|
+
} | null> | null;
|
|
30568
|
+
workflow?: {
|
|
30569
|
+
__typename?: 'Workflow';
|
|
30570
|
+
id: string;
|
|
30571
|
+
name: string;
|
|
30572
|
+
} | null;
|
|
30573
|
+
location?: {
|
|
30574
|
+
__typename?: 'Point';
|
|
30575
|
+
latitude?: number | null;
|
|
30576
|
+
longitude?: number | null;
|
|
30577
|
+
} | null;
|
|
30578
|
+
h3?: {
|
|
30579
|
+
__typename?: 'H3';
|
|
30580
|
+
h3r0?: string | null;
|
|
30581
|
+
h3r1?: string | null;
|
|
30582
|
+
h3r2?: string | null;
|
|
30583
|
+
h3r3?: string | null;
|
|
30584
|
+
h3r4?: string | null;
|
|
30585
|
+
h3r5?: string | null;
|
|
30586
|
+
h3r6?: string | null;
|
|
30587
|
+
h3r7?: string | null;
|
|
30588
|
+
h3r8?: string | null;
|
|
30589
|
+
h3r9?: string | null;
|
|
30590
|
+
h3r10?: string | null;
|
|
30591
|
+
h3r11?: string | null;
|
|
30592
|
+
h3r12?: string | null;
|
|
30593
|
+
h3r13?: string | null;
|
|
30594
|
+
h3r14?: string | null;
|
|
30595
|
+
h3r15?: string | null;
|
|
30596
|
+
} | null;
|
|
30597
|
+
address?: {
|
|
30598
|
+
__typename?: 'Address';
|
|
30599
|
+
streetAddress?: string | null;
|
|
30600
|
+
city?: string | null;
|
|
30601
|
+
region?: string | null;
|
|
30602
|
+
country?: string | null;
|
|
30603
|
+
postalCode?: string | null;
|
|
30604
|
+
} | null;
|
|
30605
|
+
worksFor?: Array<{
|
|
30606
|
+
__typename?: 'Organization';
|
|
30607
|
+
id: string;
|
|
30608
|
+
name: string;
|
|
30609
|
+
} | null> | null;
|
|
30610
|
+
affiliation?: Array<{
|
|
30611
|
+
__typename?: 'Organization';
|
|
30612
|
+
id: string;
|
|
30613
|
+
name: string;
|
|
30614
|
+
} | null> | null;
|
|
30615
|
+
memberOf?: Array<{
|
|
30616
|
+
__typename?: 'Organization';
|
|
30617
|
+
id: string;
|
|
30618
|
+
name: string;
|
|
30619
|
+
} | null> | null;
|
|
30620
|
+
alumniOf?: Array<{
|
|
30621
|
+
__typename?: 'Organization';
|
|
30622
|
+
id: string;
|
|
30623
|
+
name: string;
|
|
30624
|
+
} | null> | null;
|
|
30625
|
+
birthPlace?: {
|
|
30626
|
+
__typename?: 'Place';
|
|
30627
|
+
id: string;
|
|
30628
|
+
name: string;
|
|
30629
|
+
} | null;
|
|
30630
|
+
deathPlace?: {
|
|
30631
|
+
__typename?: 'Place';
|
|
30632
|
+
id: string;
|
|
30633
|
+
name: string;
|
|
30634
|
+
} | null;
|
|
30635
|
+
homeLocation?: Array<{
|
|
30636
|
+
__typename?: 'Place';
|
|
30637
|
+
id: string;
|
|
30638
|
+
name: string;
|
|
30639
|
+
} | null> | null;
|
|
30640
|
+
workLocation?: Array<{
|
|
30641
|
+
__typename?: 'Place';
|
|
30642
|
+
id: string;
|
|
30643
|
+
name: string;
|
|
30644
|
+
} | null> | null;
|
|
30645
|
+
} | null> | null;
|
|
30646
|
+
} | null;
|
|
30647
|
+
};
|
|
30191
30648
|
export type UpdatePersonMutationVariables = Exact<{
|
|
30192
30649
|
person: PersonUpdateInput;
|
|
30193
30650
|
}>;
|
|
@@ -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 = {}));
|