graphlit-client 1.0.20251124004 → 1.0.20251126002
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;
|
|
@@ -3507,6 +3507,7 @@ export const QueryGraph = gql `
|
|
|
3507
3507
|
id
|
|
3508
3508
|
name
|
|
3509
3509
|
type
|
|
3510
|
+
metadata
|
|
3510
3511
|
}
|
|
3511
3512
|
edges {
|
|
3512
3513
|
from
|
|
@@ -8260,6 +8261,96 @@ export const QueryInvestments = gql `
|
|
|
8260
8261
|
status
|
|
8261
8262
|
stage
|
|
8262
8263
|
investmentDate
|
|
8264
|
+
roundSize
|
|
8265
|
+
roundSizeCurrency
|
|
8266
|
+
postValuation
|
|
8267
|
+
postValuationCurrency
|
|
8268
|
+
sharesOwned
|
|
8269
|
+
vehicle
|
|
8270
|
+
entryPricePerShare
|
|
8271
|
+
currentPricePerShare
|
|
8272
|
+
discountPercent
|
|
8273
|
+
proRataRights
|
|
8274
|
+
}
|
|
8275
|
+
}
|
|
8276
|
+
}
|
|
8277
|
+
`;
|
|
8278
|
+
export const QueryInvestmentsExpanded = gql `
|
|
8279
|
+
query QueryInvestmentsExpanded($filter: InvestmentFilter, $correlationId: String) {
|
|
8280
|
+
investments(filter: $filter, correlationId: $correlationId) {
|
|
8281
|
+
results {
|
|
8282
|
+
id
|
|
8283
|
+
name
|
|
8284
|
+
creationDate
|
|
8285
|
+
modifiedDate
|
|
8286
|
+
relevance
|
|
8287
|
+
owner {
|
|
8288
|
+
id
|
|
8289
|
+
}
|
|
8290
|
+
state
|
|
8291
|
+
alternateNames
|
|
8292
|
+
uri
|
|
8293
|
+
description
|
|
8294
|
+
identifier
|
|
8295
|
+
thing
|
|
8296
|
+
feeds {
|
|
8297
|
+
id
|
|
8298
|
+
name
|
|
8299
|
+
}
|
|
8300
|
+
links {
|
|
8301
|
+
uri
|
|
8302
|
+
linkType
|
|
8303
|
+
excerpts
|
|
8304
|
+
}
|
|
8305
|
+
workflow {
|
|
8306
|
+
id
|
|
8307
|
+
name
|
|
8308
|
+
}
|
|
8309
|
+
location {
|
|
8310
|
+
latitude
|
|
8311
|
+
longitude
|
|
8312
|
+
}
|
|
8313
|
+
h3 {
|
|
8314
|
+
h3r0
|
|
8315
|
+
h3r1
|
|
8316
|
+
h3r2
|
|
8317
|
+
h3r3
|
|
8318
|
+
h3r4
|
|
8319
|
+
h3r5
|
|
8320
|
+
h3r6
|
|
8321
|
+
h3r7
|
|
8322
|
+
h3r8
|
|
8323
|
+
h3r9
|
|
8324
|
+
h3r10
|
|
8325
|
+
h3r11
|
|
8326
|
+
h3r12
|
|
8327
|
+
h3r13
|
|
8328
|
+
h3r14
|
|
8329
|
+
h3r15
|
|
8330
|
+
}
|
|
8331
|
+
amount
|
|
8332
|
+
amountCurrency
|
|
8333
|
+
status
|
|
8334
|
+
stage
|
|
8335
|
+
investmentDate
|
|
8336
|
+
roundSize
|
|
8337
|
+
roundSizeCurrency
|
|
8338
|
+
postValuation
|
|
8339
|
+
postValuationCurrency
|
|
8340
|
+
sharesOwned
|
|
8341
|
+
vehicle
|
|
8342
|
+
entryPricePerShare
|
|
8343
|
+
currentPricePerShare
|
|
8344
|
+
discountPercent
|
|
8345
|
+
proRataRights
|
|
8346
|
+
investor {
|
|
8347
|
+
id
|
|
8348
|
+
name
|
|
8349
|
+
}
|
|
8350
|
+
organization {
|
|
8351
|
+
id
|
|
8352
|
+
name
|
|
8353
|
+
}
|
|
8263
8354
|
}
|
|
8264
8355
|
}
|
|
8265
8356
|
}
|
|
@@ -8446,6 +8537,89 @@ export const QueryInvestmentFunds = gql `
|
|
|
8446
8537
|
}
|
|
8447
8538
|
amount
|
|
8448
8539
|
amountCurrency
|
|
8540
|
+
fundType
|
|
8541
|
+
vintage
|
|
8542
|
+
targetSize
|
|
8543
|
+
targetSizeCurrency
|
|
8544
|
+
}
|
|
8545
|
+
}
|
|
8546
|
+
}
|
|
8547
|
+
`;
|
|
8548
|
+
export const QueryInvestmentFundsExpanded = gql `
|
|
8549
|
+
query QueryInvestmentFundsExpanded($filter: InvestmentFundFilter, $correlationId: String) {
|
|
8550
|
+
investmentFunds(filter: $filter, correlationId: $correlationId) {
|
|
8551
|
+
results {
|
|
8552
|
+
id
|
|
8553
|
+
name
|
|
8554
|
+
creationDate
|
|
8555
|
+
modifiedDate
|
|
8556
|
+
relevance
|
|
8557
|
+
owner {
|
|
8558
|
+
id
|
|
8559
|
+
}
|
|
8560
|
+
state
|
|
8561
|
+
alternateNames
|
|
8562
|
+
uri
|
|
8563
|
+
description
|
|
8564
|
+
identifier
|
|
8565
|
+
thing
|
|
8566
|
+
feeds {
|
|
8567
|
+
id
|
|
8568
|
+
name
|
|
8569
|
+
}
|
|
8570
|
+
links {
|
|
8571
|
+
uri
|
|
8572
|
+
linkType
|
|
8573
|
+
excerpts
|
|
8574
|
+
}
|
|
8575
|
+
workflow {
|
|
8576
|
+
id
|
|
8577
|
+
name
|
|
8578
|
+
}
|
|
8579
|
+
location {
|
|
8580
|
+
latitude
|
|
8581
|
+
longitude
|
|
8582
|
+
}
|
|
8583
|
+
h3 {
|
|
8584
|
+
h3r0
|
|
8585
|
+
h3r1
|
|
8586
|
+
h3r2
|
|
8587
|
+
h3r3
|
|
8588
|
+
h3r4
|
|
8589
|
+
h3r5
|
|
8590
|
+
h3r6
|
|
8591
|
+
h3r7
|
|
8592
|
+
h3r8
|
|
8593
|
+
h3r9
|
|
8594
|
+
h3r10
|
|
8595
|
+
h3r11
|
|
8596
|
+
h3r12
|
|
8597
|
+
h3r13
|
|
8598
|
+
h3r14
|
|
8599
|
+
h3r15
|
|
8600
|
+
}
|
|
8601
|
+
amount
|
|
8602
|
+
amountCurrency
|
|
8603
|
+
fundType
|
|
8604
|
+
vintage
|
|
8605
|
+
targetSize
|
|
8606
|
+
targetSizeCurrency
|
|
8607
|
+
organizations {
|
|
8608
|
+
id
|
|
8609
|
+
name
|
|
8610
|
+
}
|
|
8611
|
+
investments {
|
|
8612
|
+
id
|
|
8613
|
+
name
|
|
8614
|
+
}
|
|
8615
|
+
parentFund {
|
|
8616
|
+
id
|
|
8617
|
+
name
|
|
8618
|
+
}
|
|
8619
|
+
childFunds {
|
|
8620
|
+
id
|
|
8621
|
+
name
|
|
8622
|
+
}
|
|
8449
8623
|
}
|
|
8450
8624
|
}
|
|
8451
8625
|
}
|
|
@@ -10609,6 +10783,115 @@ export const QueryOrganizations = gql `
|
|
|
10609
10783
|
}
|
|
10610
10784
|
}
|
|
10611
10785
|
`;
|
|
10786
|
+
export const QueryOrganizationsExpanded = gql `
|
|
10787
|
+
query QueryOrganizationsExpanded($filter: OrganizationFilter, $correlationId: String) {
|
|
10788
|
+
organizations(filter: $filter, correlationId: $correlationId) {
|
|
10789
|
+
results {
|
|
10790
|
+
id
|
|
10791
|
+
name
|
|
10792
|
+
creationDate
|
|
10793
|
+
modifiedDate
|
|
10794
|
+
relevance
|
|
10795
|
+
owner {
|
|
10796
|
+
id
|
|
10797
|
+
}
|
|
10798
|
+
state
|
|
10799
|
+
alternateNames
|
|
10800
|
+
uri
|
|
10801
|
+
description
|
|
10802
|
+
identifier
|
|
10803
|
+
thing
|
|
10804
|
+
feeds {
|
|
10805
|
+
id
|
|
10806
|
+
name
|
|
10807
|
+
}
|
|
10808
|
+
links {
|
|
10809
|
+
uri
|
|
10810
|
+
linkType
|
|
10811
|
+
excerpts
|
|
10812
|
+
}
|
|
10813
|
+
workflow {
|
|
10814
|
+
id
|
|
10815
|
+
name
|
|
10816
|
+
}
|
|
10817
|
+
location {
|
|
10818
|
+
latitude
|
|
10819
|
+
longitude
|
|
10820
|
+
}
|
|
10821
|
+
h3 {
|
|
10822
|
+
h3r0
|
|
10823
|
+
h3r1
|
|
10824
|
+
h3r2
|
|
10825
|
+
h3r3
|
|
10826
|
+
h3r4
|
|
10827
|
+
h3r5
|
|
10828
|
+
h3r6
|
|
10829
|
+
h3r7
|
|
10830
|
+
h3r8
|
|
10831
|
+
h3r9
|
|
10832
|
+
h3r10
|
|
10833
|
+
h3r11
|
|
10834
|
+
h3r12
|
|
10835
|
+
h3r13
|
|
10836
|
+
h3r14
|
|
10837
|
+
h3r15
|
|
10838
|
+
}
|
|
10839
|
+
address {
|
|
10840
|
+
streetAddress
|
|
10841
|
+
city
|
|
10842
|
+
region
|
|
10843
|
+
country
|
|
10844
|
+
postalCode
|
|
10845
|
+
}
|
|
10846
|
+
foundingDate
|
|
10847
|
+
email
|
|
10848
|
+
telephone
|
|
10849
|
+
legalName
|
|
10850
|
+
industries
|
|
10851
|
+
revenue
|
|
10852
|
+
revenueCurrency
|
|
10853
|
+
investment
|
|
10854
|
+
investmentCurrency
|
|
10855
|
+
founders {
|
|
10856
|
+
id
|
|
10857
|
+
name
|
|
10858
|
+
}
|
|
10859
|
+
employees {
|
|
10860
|
+
id
|
|
10861
|
+
name
|
|
10862
|
+
}
|
|
10863
|
+
members {
|
|
10864
|
+
id
|
|
10865
|
+
name
|
|
10866
|
+
}
|
|
10867
|
+
parentOrganization {
|
|
10868
|
+
id
|
|
10869
|
+
name
|
|
10870
|
+
}
|
|
10871
|
+
memberOf {
|
|
10872
|
+
id
|
|
10873
|
+
name
|
|
10874
|
+
}
|
|
10875
|
+
subOrganizations {
|
|
10876
|
+
id
|
|
10877
|
+
name
|
|
10878
|
+
}
|
|
10879
|
+
locations {
|
|
10880
|
+
id
|
|
10881
|
+
name
|
|
10882
|
+
}
|
|
10883
|
+
investmentsReceived {
|
|
10884
|
+
id
|
|
10885
|
+
name
|
|
10886
|
+
}
|
|
10887
|
+
investorFunds {
|
|
10888
|
+
id
|
|
10889
|
+
name
|
|
10890
|
+
}
|
|
10891
|
+
}
|
|
10892
|
+
}
|
|
10893
|
+
}
|
|
10894
|
+
`;
|
|
10612
10895
|
export const UpdateOrganization = gql `
|
|
10613
10896
|
mutation UpdateOrganization($organization: OrganizationUpdateInput!) {
|
|
10614
10897
|
updateOrganization(organization: $organization) {
|
|
@@ -10845,6 +11128,110 @@ export const QueryPersons = gql `
|
|
|
10845
11128
|
}
|
|
10846
11129
|
}
|
|
10847
11130
|
`;
|
|
11131
|
+
export const QueryPersonsExpanded = gql `
|
|
11132
|
+
query QueryPersonsExpanded($filter: PersonFilter, $correlationId: String) {
|
|
11133
|
+
persons(filter: $filter, correlationId: $correlationId) {
|
|
11134
|
+
results {
|
|
11135
|
+
id
|
|
11136
|
+
name
|
|
11137
|
+
creationDate
|
|
11138
|
+
modifiedDate
|
|
11139
|
+
relevance
|
|
11140
|
+
owner {
|
|
11141
|
+
id
|
|
11142
|
+
}
|
|
11143
|
+
state
|
|
11144
|
+
alternateNames
|
|
11145
|
+
uri
|
|
11146
|
+
description
|
|
11147
|
+
identifier
|
|
11148
|
+
thing
|
|
11149
|
+
feeds {
|
|
11150
|
+
id
|
|
11151
|
+
name
|
|
11152
|
+
}
|
|
11153
|
+
links {
|
|
11154
|
+
uri
|
|
11155
|
+
linkType
|
|
11156
|
+
excerpts
|
|
11157
|
+
}
|
|
11158
|
+
workflow {
|
|
11159
|
+
id
|
|
11160
|
+
name
|
|
11161
|
+
}
|
|
11162
|
+
location {
|
|
11163
|
+
latitude
|
|
11164
|
+
longitude
|
|
11165
|
+
}
|
|
11166
|
+
h3 {
|
|
11167
|
+
h3r0
|
|
11168
|
+
h3r1
|
|
11169
|
+
h3r2
|
|
11170
|
+
h3r3
|
|
11171
|
+
h3r4
|
|
11172
|
+
h3r5
|
|
11173
|
+
h3r6
|
|
11174
|
+
h3r7
|
|
11175
|
+
h3r8
|
|
11176
|
+
h3r9
|
|
11177
|
+
h3r10
|
|
11178
|
+
h3r11
|
|
11179
|
+
h3r12
|
|
11180
|
+
h3r13
|
|
11181
|
+
h3r14
|
|
11182
|
+
h3r15
|
|
11183
|
+
}
|
|
11184
|
+
address {
|
|
11185
|
+
streetAddress
|
|
11186
|
+
city
|
|
11187
|
+
region
|
|
11188
|
+
country
|
|
11189
|
+
postalCode
|
|
11190
|
+
}
|
|
11191
|
+
email
|
|
11192
|
+
givenName
|
|
11193
|
+
familyName
|
|
11194
|
+
phoneNumber
|
|
11195
|
+
birthDate
|
|
11196
|
+
title
|
|
11197
|
+
occupation
|
|
11198
|
+
education
|
|
11199
|
+
worksFor {
|
|
11200
|
+
id
|
|
11201
|
+
name
|
|
11202
|
+
}
|
|
11203
|
+
affiliation {
|
|
11204
|
+
id
|
|
11205
|
+
name
|
|
11206
|
+
}
|
|
11207
|
+
memberOf {
|
|
11208
|
+
id
|
|
11209
|
+
name
|
|
11210
|
+
}
|
|
11211
|
+
alumniOf {
|
|
11212
|
+
id
|
|
11213
|
+
name
|
|
11214
|
+
}
|
|
11215
|
+
birthPlace {
|
|
11216
|
+
id
|
|
11217
|
+
name
|
|
11218
|
+
}
|
|
11219
|
+
deathPlace {
|
|
11220
|
+
id
|
|
11221
|
+
name
|
|
11222
|
+
}
|
|
11223
|
+
homeLocation {
|
|
11224
|
+
id
|
|
11225
|
+
name
|
|
11226
|
+
}
|
|
11227
|
+
workLocation {
|
|
11228
|
+
id
|
|
11229
|
+
name
|
|
11230
|
+
}
|
|
11231
|
+
}
|
|
11232
|
+
}
|
|
11233
|
+
}
|
|
11234
|
+
`;
|
|
10848
11235
|
export const UpdatePerson = gql `
|
|
10849
11236
|
mutation UpdatePerson($person: PersonUpdateInput!) {
|
|
10850
11237
|
updatePerson(person: $person) {
|
|
@@ -21555,6 +21555,7 @@ export type QueryGraphQuery = {
|
|
|
21555
21555
|
id: string;
|
|
21556
21556
|
name: string;
|
|
21557
21557
|
type: EntityTypes;
|
|
21558
|
+
metadata?: string | null;
|
|
21558
21559
|
} | null> | null;
|
|
21559
21560
|
edges?: Array<{
|
|
21560
21561
|
__typename?: 'GraphEdge';
|
|
@@ -26941,6 +26942,99 @@ export type QueryInvestmentsQuery = {
|
|
|
26941
26942
|
status?: string | null;
|
|
26942
26943
|
stage?: string | null;
|
|
26943
26944
|
investmentDate?: any | null;
|
|
26945
|
+
roundSize?: any | null;
|
|
26946
|
+
roundSizeCurrency?: string | null;
|
|
26947
|
+
postValuation?: any | null;
|
|
26948
|
+
postValuationCurrency?: string | null;
|
|
26949
|
+
sharesOwned?: any | null;
|
|
26950
|
+
vehicle?: string | null;
|
|
26951
|
+
entryPricePerShare?: any | null;
|
|
26952
|
+
currentPricePerShare?: any | null;
|
|
26953
|
+
discountPercent?: any | null;
|
|
26954
|
+
proRataRights?: boolean | null;
|
|
26955
|
+
owner: {
|
|
26956
|
+
__typename?: 'Owner';
|
|
26957
|
+
id: string;
|
|
26958
|
+
};
|
|
26959
|
+
feeds?: Array<{
|
|
26960
|
+
__typename?: 'Feed';
|
|
26961
|
+
id: string;
|
|
26962
|
+
name: string;
|
|
26963
|
+
} | null> | null;
|
|
26964
|
+
links?: Array<{
|
|
26965
|
+
__typename?: 'LinkReference';
|
|
26966
|
+
uri?: any | null;
|
|
26967
|
+
linkType?: LinkTypes | null;
|
|
26968
|
+
excerpts?: string | null;
|
|
26969
|
+
} | null> | null;
|
|
26970
|
+
workflow?: {
|
|
26971
|
+
__typename?: 'Workflow';
|
|
26972
|
+
id: string;
|
|
26973
|
+
name: string;
|
|
26974
|
+
} | null;
|
|
26975
|
+
location?: {
|
|
26976
|
+
__typename?: 'Point';
|
|
26977
|
+
latitude?: number | null;
|
|
26978
|
+
longitude?: number | null;
|
|
26979
|
+
} | null;
|
|
26980
|
+
h3?: {
|
|
26981
|
+
__typename?: 'H3';
|
|
26982
|
+
h3r0?: string | null;
|
|
26983
|
+
h3r1?: string | null;
|
|
26984
|
+
h3r2?: string | null;
|
|
26985
|
+
h3r3?: string | null;
|
|
26986
|
+
h3r4?: string | null;
|
|
26987
|
+
h3r5?: string | null;
|
|
26988
|
+
h3r6?: string | null;
|
|
26989
|
+
h3r7?: string | null;
|
|
26990
|
+
h3r8?: string | null;
|
|
26991
|
+
h3r9?: string | null;
|
|
26992
|
+
h3r10?: string | null;
|
|
26993
|
+
h3r11?: string | null;
|
|
26994
|
+
h3r12?: string | null;
|
|
26995
|
+
h3r13?: string | null;
|
|
26996
|
+
h3r14?: string | null;
|
|
26997
|
+
h3r15?: string | null;
|
|
26998
|
+
} | null;
|
|
26999
|
+
} | null> | null;
|
|
27000
|
+
} | null;
|
|
27001
|
+
};
|
|
27002
|
+
export type QueryInvestmentsExpandedQueryVariables = Exact<{
|
|
27003
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
27004
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27005
|
+
}>;
|
|
27006
|
+
export type QueryInvestmentsExpandedQuery = {
|
|
27007
|
+
__typename?: 'Query';
|
|
27008
|
+
investments?: {
|
|
27009
|
+
__typename?: 'InvestmentResults';
|
|
27010
|
+
results?: Array<{
|
|
27011
|
+
__typename?: 'Investment';
|
|
27012
|
+
id: string;
|
|
27013
|
+
name: string;
|
|
27014
|
+
creationDate: any;
|
|
27015
|
+
modifiedDate?: any | null;
|
|
27016
|
+
relevance?: number | null;
|
|
27017
|
+
state: EntityState;
|
|
27018
|
+
alternateNames?: Array<string | null> | null;
|
|
27019
|
+
uri?: any | null;
|
|
27020
|
+
description?: string | null;
|
|
27021
|
+
identifier?: string | null;
|
|
27022
|
+
thing?: string | null;
|
|
27023
|
+
amount?: any | null;
|
|
27024
|
+
amountCurrency?: string | null;
|
|
27025
|
+
status?: string | null;
|
|
27026
|
+
stage?: string | null;
|
|
27027
|
+
investmentDate?: any | null;
|
|
27028
|
+
roundSize?: any | null;
|
|
27029
|
+
roundSizeCurrency?: string | null;
|
|
27030
|
+
postValuation?: any | null;
|
|
27031
|
+
postValuationCurrency?: string | null;
|
|
27032
|
+
sharesOwned?: any | null;
|
|
27033
|
+
vehicle?: string | null;
|
|
27034
|
+
entryPricePerShare?: any | null;
|
|
27035
|
+
currentPricePerShare?: any | null;
|
|
27036
|
+
discountPercent?: any | null;
|
|
27037
|
+
proRataRights?: boolean | null;
|
|
26944
27038
|
owner: {
|
|
26945
27039
|
__typename?: 'Owner';
|
|
26946
27040
|
id: string;
|
|
@@ -26985,6 +27079,16 @@ export type QueryInvestmentsQuery = {
|
|
|
26985
27079
|
h3r14?: string | null;
|
|
26986
27080
|
h3r15?: string | null;
|
|
26987
27081
|
} | null;
|
|
27082
|
+
investor?: {
|
|
27083
|
+
__typename?: 'InvestmentFund';
|
|
27084
|
+
id: string;
|
|
27085
|
+
name: string;
|
|
27086
|
+
} | null;
|
|
27087
|
+
organization?: {
|
|
27088
|
+
__typename?: 'Organization';
|
|
27089
|
+
id: string;
|
|
27090
|
+
name: string;
|
|
27091
|
+
} | null;
|
|
26988
27092
|
} | null> | null;
|
|
26989
27093
|
} | null;
|
|
26990
27094
|
};
|
|
@@ -27170,6 +27274,10 @@ export type QueryInvestmentFundsQuery = {
|
|
|
27170
27274
|
thing?: string | null;
|
|
27171
27275
|
amount?: any | null;
|
|
27172
27276
|
amountCurrency?: string | null;
|
|
27277
|
+
fundType?: string | null;
|
|
27278
|
+
vintage?: number | null;
|
|
27279
|
+
targetSize?: any | null;
|
|
27280
|
+
targetSizeCurrency?: string | null;
|
|
27173
27281
|
owner: {
|
|
27174
27282
|
__typename?: 'Owner';
|
|
27175
27283
|
id: string;
|
|
@@ -27217,6 +27325,100 @@ export type QueryInvestmentFundsQuery = {
|
|
|
27217
27325
|
} | null> | null;
|
|
27218
27326
|
} | null;
|
|
27219
27327
|
};
|
|
27328
|
+
export type QueryInvestmentFundsExpandedQueryVariables = Exact<{
|
|
27329
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
27330
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27331
|
+
}>;
|
|
27332
|
+
export type QueryInvestmentFundsExpandedQuery = {
|
|
27333
|
+
__typename?: 'Query';
|
|
27334
|
+
investmentFunds?: {
|
|
27335
|
+
__typename?: 'InvestmentFundResults';
|
|
27336
|
+
results?: Array<{
|
|
27337
|
+
__typename?: 'InvestmentFund';
|
|
27338
|
+
id: string;
|
|
27339
|
+
name: string;
|
|
27340
|
+
creationDate: any;
|
|
27341
|
+
modifiedDate?: any | null;
|
|
27342
|
+
relevance?: number | null;
|
|
27343
|
+
state: EntityState;
|
|
27344
|
+
alternateNames?: Array<string | null> | null;
|
|
27345
|
+
uri?: any | null;
|
|
27346
|
+
description?: string | null;
|
|
27347
|
+
identifier?: string | null;
|
|
27348
|
+
thing?: string | null;
|
|
27349
|
+
amount?: any | null;
|
|
27350
|
+
amountCurrency?: string | null;
|
|
27351
|
+
fundType?: string | null;
|
|
27352
|
+
vintage?: number | null;
|
|
27353
|
+
targetSize?: any | null;
|
|
27354
|
+
targetSizeCurrency?: string | null;
|
|
27355
|
+
owner: {
|
|
27356
|
+
__typename?: 'Owner';
|
|
27357
|
+
id: string;
|
|
27358
|
+
};
|
|
27359
|
+
feeds?: Array<{
|
|
27360
|
+
__typename?: 'Feed';
|
|
27361
|
+
id: string;
|
|
27362
|
+
name: string;
|
|
27363
|
+
} | null> | null;
|
|
27364
|
+
links?: Array<{
|
|
27365
|
+
__typename?: 'LinkReference';
|
|
27366
|
+
uri?: any | null;
|
|
27367
|
+
linkType?: LinkTypes | null;
|
|
27368
|
+
excerpts?: string | null;
|
|
27369
|
+
} | null> | null;
|
|
27370
|
+
workflow?: {
|
|
27371
|
+
__typename?: 'Workflow';
|
|
27372
|
+
id: string;
|
|
27373
|
+
name: string;
|
|
27374
|
+
} | null;
|
|
27375
|
+
location?: {
|
|
27376
|
+
__typename?: 'Point';
|
|
27377
|
+
latitude?: number | null;
|
|
27378
|
+
longitude?: number | null;
|
|
27379
|
+
} | null;
|
|
27380
|
+
h3?: {
|
|
27381
|
+
__typename?: 'H3';
|
|
27382
|
+
h3r0?: string | null;
|
|
27383
|
+
h3r1?: string | null;
|
|
27384
|
+
h3r2?: string | null;
|
|
27385
|
+
h3r3?: string | null;
|
|
27386
|
+
h3r4?: string | null;
|
|
27387
|
+
h3r5?: string | null;
|
|
27388
|
+
h3r6?: string | null;
|
|
27389
|
+
h3r7?: string | null;
|
|
27390
|
+
h3r8?: string | null;
|
|
27391
|
+
h3r9?: string | null;
|
|
27392
|
+
h3r10?: string | null;
|
|
27393
|
+
h3r11?: string | null;
|
|
27394
|
+
h3r12?: string | null;
|
|
27395
|
+
h3r13?: string | null;
|
|
27396
|
+
h3r14?: string | null;
|
|
27397
|
+
h3r15?: string | null;
|
|
27398
|
+
} | null;
|
|
27399
|
+
organizations?: Array<{
|
|
27400
|
+
__typename?: 'Organization';
|
|
27401
|
+
id: string;
|
|
27402
|
+
name: string;
|
|
27403
|
+
} | null> | null;
|
|
27404
|
+
investments?: Array<{
|
|
27405
|
+
__typename?: 'Investment';
|
|
27406
|
+
id: string;
|
|
27407
|
+
name: string;
|
|
27408
|
+
} | null> | null;
|
|
27409
|
+
parentFund?: {
|
|
27410
|
+
__typename?: 'InvestmentFund';
|
|
27411
|
+
id: string;
|
|
27412
|
+
name: string;
|
|
27413
|
+
} | null;
|
|
27414
|
+
childFunds?: Array<{
|
|
27415
|
+
__typename?: 'InvestmentFund';
|
|
27416
|
+
id: string;
|
|
27417
|
+
name: string;
|
|
27418
|
+
} | null> | null;
|
|
27419
|
+
} | null> | null;
|
|
27420
|
+
} | null;
|
|
27421
|
+
};
|
|
27220
27422
|
export type UpdateInvestmentFundMutationVariables = Exact<{
|
|
27221
27423
|
investmentFund: InvestmentFundUpdateInput;
|
|
27222
27424
|
}>;
|
|
@@ -29904,6 +30106,136 @@ export type QueryOrganizationsQuery = {
|
|
|
29904
30106
|
} | null> | null;
|
|
29905
30107
|
} | null;
|
|
29906
30108
|
};
|
|
30109
|
+
export type QueryOrganizationsExpandedQueryVariables = Exact<{
|
|
30110
|
+
filter?: InputMaybe<OrganizationFilter>;
|
|
30111
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30112
|
+
}>;
|
|
30113
|
+
export type QueryOrganizationsExpandedQuery = {
|
|
30114
|
+
__typename?: 'Query';
|
|
30115
|
+
organizations?: {
|
|
30116
|
+
__typename?: 'OrganizationResults';
|
|
30117
|
+
results?: Array<{
|
|
30118
|
+
__typename?: 'Organization';
|
|
30119
|
+
id: string;
|
|
30120
|
+
name: string;
|
|
30121
|
+
creationDate: any;
|
|
30122
|
+
modifiedDate?: any | null;
|
|
30123
|
+
relevance?: number | null;
|
|
30124
|
+
state: EntityState;
|
|
30125
|
+
alternateNames?: Array<string | null> | null;
|
|
30126
|
+
uri?: any | null;
|
|
30127
|
+
description?: string | null;
|
|
30128
|
+
identifier?: string | null;
|
|
30129
|
+
thing?: string | null;
|
|
30130
|
+
foundingDate?: any | null;
|
|
30131
|
+
email?: string | null;
|
|
30132
|
+
telephone?: string | null;
|
|
30133
|
+
legalName?: string | null;
|
|
30134
|
+
industries?: Array<string | null> | null;
|
|
30135
|
+
revenue?: any | null;
|
|
30136
|
+
revenueCurrency?: string | null;
|
|
30137
|
+
investment?: any | null;
|
|
30138
|
+
investmentCurrency?: string | null;
|
|
30139
|
+
owner: {
|
|
30140
|
+
__typename?: 'Owner';
|
|
30141
|
+
id: string;
|
|
30142
|
+
};
|
|
30143
|
+
feeds?: Array<{
|
|
30144
|
+
__typename?: 'Feed';
|
|
30145
|
+
id: string;
|
|
30146
|
+
name: string;
|
|
30147
|
+
} | null> | null;
|
|
30148
|
+
links?: Array<{
|
|
30149
|
+
__typename?: 'LinkReference';
|
|
30150
|
+
uri?: any | null;
|
|
30151
|
+
linkType?: LinkTypes | null;
|
|
30152
|
+
excerpts?: string | null;
|
|
30153
|
+
} | null> | null;
|
|
30154
|
+
workflow?: {
|
|
30155
|
+
__typename?: 'Workflow';
|
|
30156
|
+
id: string;
|
|
30157
|
+
name: string;
|
|
30158
|
+
} | null;
|
|
30159
|
+
location?: {
|
|
30160
|
+
__typename?: 'Point';
|
|
30161
|
+
latitude?: number | null;
|
|
30162
|
+
longitude?: number | null;
|
|
30163
|
+
} | null;
|
|
30164
|
+
h3?: {
|
|
30165
|
+
__typename?: 'H3';
|
|
30166
|
+
h3r0?: string | null;
|
|
30167
|
+
h3r1?: string | null;
|
|
30168
|
+
h3r2?: string | null;
|
|
30169
|
+
h3r3?: string | null;
|
|
30170
|
+
h3r4?: string | null;
|
|
30171
|
+
h3r5?: string | null;
|
|
30172
|
+
h3r6?: string | null;
|
|
30173
|
+
h3r7?: string | null;
|
|
30174
|
+
h3r8?: string | null;
|
|
30175
|
+
h3r9?: string | null;
|
|
30176
|
+
h3r10?: string | null;
|
|
30177
|
+
h3r11?: string | null;
|
|
30178
|
+
h3r12?: string | null;
|
|
30179
|
+
h3r13?: string | null;
|
|
30180
|
+
h3r14?: string | null;
|
|
30181
|
+
h3r15?: string | null;
|
|
30182
|
+
} | null;
|
|
30183
|
+
address?: {
|
|
30184
|
+
__typename?: 'Address';
|
|
30185
|
+
streetAddress?: string | null;
|
|
30186
|
+
city?: string | null;
|
|
30187
|
+
region?: string | null;
|
|
30188
|
+
country?: string | null;
|
|
30189
|
+
postalCode?: string | null;
|
|
30190
|
+
} | null;
|
|
30191
|
+
founders?: Array<{
|
|
30192
|
+
__typename?: 'Person';
|
|
30193
|
+
id: string;
|
|
30194
|
+
name: string;
|
|
30195
|
+
} | null> | null;
|
|
30196
|
+
employees?: Array<{
|
|
30197
|
+
__typename?: 'Person';
|
|
30198
|
+
id: string;
|
|
30199
|
+
name: string;
|
|
30200
|
+
} | null> | null;
|
|
30201
|
+
members?: Array<{
|
|
30202
|
+
__typename?: 'Person';
|
|
30203
|
+
id: string;
|
|
30204
|
+
name: string;
|
|
30205
|
+
} | null> | null;
|
|
30206
|
+
parentOrganization?: {
|
|
30207
|
+
__typename?: 'Organization';
|
|
30208
|
+
id: string;
|
|
30209
|
+
name: string;
|
|
30210
|
+
} | null;
|
|
30211
|
+
memberOf?: Array<{
|
|
30212
|
+
__typename?: 'Organization';
|
|
30213
|
+
id: string;
|
|
30214
|
+
name: string;
|
|
30215
|
+
} | null> | null;
|
|
30216
|
+
subOrganizations?: Array<{
|
|
30217
|
+
__typename?: 'Organization';
|
|
30218
|
+
id: string;
|
|
30219
|
+
name: string;
|
|
30220
|
+
} | null> | null;
|
|
30221
|
+
locations?: Array<{
|
|
30222
|
+
__typename?: 'Place';
|
|
30223
|
+
id: string;
|
|
30224
|
+
name: string;
|
|
30225
|
+
} | null> | null;
|
|
30226
|
+
investmentsReceived?: Array<{
|
|
30227
|
+
__typename?: 'Investment';
|
|
30228
|
+
id: string;
|
|
30229
|
+
name: string;
|
|
30230
|
+
} | null> | null;
|
|
30231
|
+
investorFunds?: Array<{
|
|
30232
|
+
__typename?: 'InvestmentFund';
|
|
30233
|
+
id: string;
|
|
30234
|
+
name: string;
|
|
30235
|
+
} | null> | null;
|
|
30236
|
+
} | null> | null;
|
|
30237
|
+
} | null;
|
|
30238
|
+
};
|
|
29907
30239
|
export type UpdateOrganizationMutationVariables = Exact<{
|
|
29908
30240
|
organization: OrganizationUpdateInput;
|
|
29909
30241
|
}>;
|
|
@@ -30190,6 +30522,130 @@ export type QueryPersonsQuery = {
|
|
|
30190
30522
|
} | null> | null;
|
|
30191
30523
|
} | null;
|
|
30192
30524
|
};
|
|
30525
|
+
export type QueryPersonsExpandedQueryVariables = Exact<{
|
|
30526
|
+
filter?: InputMaybe<PersonFilter>;
|
|
30527
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30528
|
+
}>;
|
|
30529
|
+
export type QueryPersonsExpandedQuery = {
|
|
30530
|
+
__typename?: 'Query';
|
|
30531
|
+
persons?: {
|
|
30532
|
+
__typename?: 'PersonResults';
|
|
30533
|
+
results?: Array<{
|
|
30534
|
+
__typename?: 'Person';
|
|
30535
|
+
id: string;
|
|
30536
|
+
name: string;
|
|
30537
|
+
creationDate: any;
|
|
30538
|
+
modifiedDate?: any | null;
|
|
30539
|
+
relevance?: number | null;
|
|
30540
|
+
state: EntityState;
|
|
30541
|
+
alternateNames?: Array<string | null> | null;
|
|
30542
|
+
uri?: any | null;
|
|
30543
|
+
description?: string | null;
|
|
30544
|
+
identifier?: string | null;
|
|
30545
|
+
thing?: string | null;
|
|
30546
|
+
email?: string | null;
|
|
30547
|
+
givenName?: string | null;
|
|
30548
|
+
familyName?: string | null;
|
|
30549
|
+
phoneNumber?: string | null;
|
|
30550
|
+
birthDate?: any | null;
|
|
30551
|
+
title?: string | null;
|
|
30552
|
+
occupation?: string | null;
|
|
30553
|
+
education?: string | null;
|
|
30554
|
+
owner: {
|
|
30555
|
+
__typename?: 'Owner';
|
|
30556
|
+
id: string;
|
|
30557
|
+
};
|
|
30558
|
+
feeds?: Array<{
|
|
30559
|
+
__typename?: 'Feed';
|
|
30560
|
+
id: string;
|
|
30561
|
+
name: string;
|
|
30562
|
+
} | null> | null;
|
|
30563
|
+
links?: Array<{
|
|
30564
|
+
__typename?: 'LinkReference';
|
|
30565
|
+
uri?: any | null;
|
|
30566
|
+
linkType?: LinkTypes | null;
|
|
30567
|
+
excerpts?: string | null;
|
|
30568
|
+
} | null> | null;
|
|
30569
|
+
workflow?: {
|
|
30570
|
+
__typename?: 'Workflow';
|
|
30571
|
+
id: string;
|
|
30572
|
+
name: string;
|
|
30573
|
+
} | null;
|
|
30574
|
+
location?: {
|
|
30575
|
+
__typename?: 'Point';
|
|
30576
|
+
latitude?: number | null;
|
|
30577
|
+
longitude?: number | null;
|
|
30578
|
+
} | null;
|
|
30579
|
+
h3?: {
|
|
30580
|
+
__typename?: 'H3';
|
|
30581
|
+
h3r0?: string | null;
|
|
30582
|
+
h3r1?: string | null;
|
|
30583
|
+
h3r2?: string | null;
|
|
30584
|
+
h3r3?: string | null;
|
|
30585
|
+
h3r4?: string | null;
|
|
30586
|
+
h3r5?: string | null;
|
|
30587
|
+
h3r6?: string | null;
|
|
30588
|
+
h3r7?: string | null;
|
|
30589
|
+
h3r8?: string | null;
|
|
30590
|
+
h3r9?: string | null;
|
|
30591
|
+
h3r10?: string | null;
|
|
30592
|
+
h3r11?: string | null;
|
|
30593
|
+
h3r12?: string | null;
|
|
30594
|
+
h3r13?: string | null;
|
|
30595
|
+
h3r14?: string | null;
|
|
30596
|
+
h3r15?: string | null;
|
|
30597
|
+
} | null;
|
|
30598
|
+
address?: {
|
|
30599
|
+
__typename?: 'Address';
|
|
30600
|
+
streetAddress?: string | null;
|
|
30601
|
+
city?: string | null;
|
|
30602
|
+
region?: string | null;
|
|
30603
|
+
country?: string | null;
|
|
30604
|
+
postalCode?: string | null;
|
|
30605
|
+
} | null;
|
|
30606
|
+
worksFor?: Array<{
|
|
30607
|
+
__typename?: 'Organization';
|
|
30608
|
+
id: string;
|
|
30609
|
+
name: string;
|
|
30610
|
+
} | null> | null;
|
|
30611
|
+
affiliation?: Array<{
|
|
30612
|
+
__typename?: 'Organization';
|
|
30613
|
+
id: string;
|
|
30614
|
+
name: string;
|
|
30615
|
+
} | null> | null;
|
|
30616
|
+
memberOf?: Array<{
|
|
30617
|
+
__typename?: 'Organization';
|
|
30618
|
+
id: string;
|
|
30619
|
+
name: string;
|
|
30620
|
+
} | null> | null;
|
|
30621
|
+
alumniOf?: Array<{
|
|
30622
|
+
__typename?: 'Organization';
|
|
30623
|
+
id: string;
|
|
30624
|
+
name: string;
|
|
30625
|
+
} | null> | null;
|
|
30626
|
+
birthPlace?: {
|
|
30627
|
+
__typename?: 'Place';
|
|
30628
|
+
id: string;
|
|
30629
|
+
name: string;
|
|
30630
|
+
} | null;
|
|
30631
|
+
deathPlace?: {
|
|
30632
|
+
__typename?: 'Place';
|
|
30633
|
+
id: string;
|
|
30634
|
+
name: string;
|
|
30635
|
+
} | null;
|
|
30636
|
+
homeLocation?: Array<{
|
|
30637
|
+
__typename?: 'Place';
|
|
30638
|
+
id: string;
|
|
30639
|
+
name: string;
|
|
30640
|
+
} | null> | null;
|
|
30641
|
+
workLocation?: Array<{
|
|
30642
|
+
__typename?: 'Place';
|
|
30643
|
+
id: string;
|
|
30644
|
+
name: string;
|
|
30645
|
+
} | null> | null;
|
|
30646
|
+
} | null> | null;
|
|
30647
|
+
} | null;
|
|
30648
|
+
};
|
|
30193
30649
|
export type UpdatePersonMutationVariables = Exact<{
|
|
30194
30650
|
person: PersonUpdateInput;
|
|
30195
30651
|
}>;
|