graphlit-client 1.0.20251123001 → 1.0.20251124001
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.
|
@@ -413,6 +413,10 @@ export declare enum AnthropicModels {
|
|
|
413
413
|
Claude_4_5Haiku = "CLAUDE_4_5_HAIKU",
|
|
414
414
|
/** Claude 4.5 Haiku (10-01-2025 version) */
|
|
415
415
|
Claude_4_5Haiku_20251001 = "CLAUDE_4_5_HAIKU_20251001",
|
|
416
|
+
/** Claude 4.5 Opus (Latest) */
|
|
417
|
+
Claude_4_5Opus = "CLAUDE_4_5_OPUS",
|
|
418
|
+
/** Claude 4.5 Opus (11-01-2025 version) */
|
|
419
|
+
Claude_4_5Opus_20251101 = "CLAUDE_4_5_OPUS_20251101",
|
|
416
420
|
/** Claude 4.5 Sonnet (Latest) */
|
|
417
421
|
Claude_4_5Sonnet = "CLAUDE_4_5_SONNET",
|
|
418
422
|
/** Claude 4.5 Sonnet (09-29-2025 version) */
|
|
@@ -4236,6 +4240,8 @@ export type Event = {
|
|
|
4236
4240
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
4237
4241
|
/** The EPSG code for spatial reference of the event. */
|
|
4238
4242
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
4243
|
+
/** The status of the event. */
|
|
4244
|
+
eventStatus?: Maybe<Scalars['String']['output']>;
|
|
4239
4245
|
/** The feeds that discovered this event. */
|
|
4240
4246
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
4241
4247
|
/** The H3 index of the event. */
|
|
@@ -4258,14 +4264,20 @@ export type Event = {
|
|
|
4258
4264
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
4259
4265
|
/** The name of the event. */
|
|
4260
4266
|
name: Scalars['String']['output'];
|
|
4267
|
+
/** The organizer of the event. */
|
|
4268
|
+
organizer?: Maybe<Scalars['String']['output']>;
|
|
4261
4269
|
/** The owner of the event. */
|
|
4262
4270
|
owner: Owner;
|
|
4271
|
+
/** The performer at the event. */
|
|
4272
|
+
performer?: Maybe<Scalars['String']['output']>;
|
|
4263
4273
|
/** The event price. */
|
|
4264
4274
|
price?: Maybe<Scalars['Decimal']['output']>;
|
|
4265
4275
|
/** The currency of the event price. */
|
|
4266
4276
|
priceCurrency?: Maybe<Scalars['String']['output']>;
|
|
4267
4277
|
/** The relevance score of the event. */
|
|
4268
4278
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
4279
|
+
/** The sponsor of the event. */
|
|
4280
|
+
sponsor?: Maybe<Scalars['String']['output']>;
|
|
4269
4281
|
/** The event start date. */
|
|
4270
4282
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
4271
4283
|
/** The state of the event (i.e. created, enabled). */
|
|
@@ -4276,6 +4288,8 @@ export type Event = {
|
|
|
4276
4288
|
typicalAgeRange?: Maybe<Scalars['String']['output']>;
|
|
4277
4289
|
/** The event URI. */
|
|
4278
4290
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
4291
|
+
/** The workflow associated with this event. */
|
|
4292
|
+
workflow?: Maybe<Workflow>;
|
|
4279
4293
|
};
|
|
4280
4294
|
/** Represents a event facet. */
|
|
4281
4295
|
export type EventFacet = {
|
|
@@ -4388,6 +4402,8 @@ export type EventInput = {
|
|
|
4388
4402
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4389
4403
|
/** The event end date. */
|
|
4390
4404
|
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4405
|
+
/** The status of the event. */
|
|
4406
|
+
eventStatus?: InputMaybe<Scalars['String']['input']>;
|
|
4391
4407
|
/** The event external identifier. */
|
|
4392
4408
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
4393
4409
|
/** If the event is accessible for free. */
|
|
@@ -4400,10 +4416,16 @@ export type EventInput = {
|
|
|
4400
4416
|
minPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4401
4417
|
/** The name of the event. */
|
|
4402
4418
|
name: Scalars['String']['input'];
|
|
4419
|
+
/** The organizer of the event. */
|
|
4420
|
+
organizer?: InputMaybe<Scalars['String']['input']>;
|
|
4421
|
+
/** The performer at the event. */
|
|
4422
|
+
performer?: InputMaybe<Scalars['String']['input']>;
|
|
4403
4423
|
/** The event price. */
|
|
4404
4424
|
price?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4405
4425
|
/** The currency of the event price. */
|
|
4406
4426
|
priceCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
4427
|
+
/** The sponsor of the event. */
|
|
4428
|
+
sponsor?: InputMaybe<Scalars['String']['input']>;
|
|
4407
4429
|
/** The event start date. */
|
|
4408
4430
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4409
4431
|
/** The event typical age range. */
|
|
@@ -4520,6 +4542,8 @@ export type EventUpdateInput = {
|
|
|
4520
4542
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4521
4543
|
/** The event end date. */
|
|
4522
4544
|
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4545
|
+
/** The status of the event. */
|
|
4546
|
+
eventStatus?: InputMaybe<Scalars['String']['input']>;
|
|
4523
4547
|
/** The ID of the event to update. */
|
|
4524
4548
|
id: Scalars['ID']['input'];
|
|
4525
4549
|
/** The event external identifier. */
|
|
@@ -4534,10 +4558,16 @@ export type EventUpdateInput = {
|
|
|
4534
4558
|
minPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4535
4559
|
/** The name of the event. */
|
|
4536
4560
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4561
|
+
/** The organizer of the event. */
|
|
4562
|
+
organizer?: InputMaybe<Scalars['String']['input']>;
|
|
4563
|
+
/** The performer at the event. */
|
|
4564
|
+
performer?: InputMaybe<Scalars['String']['input']>;
|
|
4537
4565
|
/** The event price. */
|
|
4538
4566
|
price?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4539
4567
|
/** The currency of the event price. */
|
|
4540
4568
|
priceCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
4569
|
+
/** The sponsor of the event. */
|
|
4570
|
+
sponsor?: InputMaybe<Scalars['String']['input']>;
|
|
4541
4571
|
/** The event start date. */
|
|
4542
4572
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4543
4573
|
/** The event typical age range. */
|
|
@@ -6615,18 +6645,34 @@ export type Investment = {
|
|
|
6615
6645
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
6616
6646
|
/** The creation date of the investment. */
|
|
6617
6647
|
creationDate: Scalars['DateTime']['output'];
|
|
6648
|
+
/** The current price per share. */
|
|
6649
|
+
currentPricePerShare?: Maybe<Scalars['Decimal']['output']>;
|
|
6618
6650
|
/** The investment description. */
|
|
6619
6651
|
description?: Maybe<Scalars['String']['output']>;
|
|
6652
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
6653
|
+
discountPercent?: Maybe<Scalars['Decimal']['output']>;
|
|
6654
|
+
/** The entry price per share. */
|
|
6655
|
+
entryPricePerShare?: Maybe<Scalars['Decimal']['output']>;
|
|
6620
6656
|
/** The EPSG code for spatial reference of the investment. */
|
|
6621
6657
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6622
6658
|
/** The feeds that discovered this investment. */
|
|
6623
6659
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
6660
|
+
/** The fund that made this investment. */
|
|
6661
|
+
fund?: Maybe<InvestmentFund>;
|
|
6624
6662
|
/** The H3 index of the investment. */
|
|
6625
6663
|
h3?: Maybe<H3>;
|
|
6626
6664
|
/** The ID of the investment. */
|
|
6627
6665
|
id: Scalars['ID']['output'];
|
|
6628
6666
|
/** The investment external identifier. */
|
|
6629
6667
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
6668
|
+
/** The date of the investment. */
|
|
6669
|
+
investmentDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6670
|
+
/** The fund that made this investment (for fund investments). */
|
|
6671
|
+
investorFund?: Maybe<InvestmentFund>;
|
|
6672
|
+
/** The organization that made this investment (for direct corporate investments). */
|
|
6673
|
+
investorOrganization?: Maybe<Organization>;
|
|
6674
|
+
/** The person who made this investment (for angel/individual investments). */
|
|
6675
|
+
investorPerson?: Maybe<Person>;
|
|
6630
6676
|
/** The extracted hyperlinks. */
|
|
6631
6677
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6632
6678
|
/** The geo-location of the investment. */
|
|
@@ -6635,16 +6681,38 @@ export type Investment = {
|
|
|
6635
6681
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6636
6682
|
/** The name of the investment. */
|
|
6637
6683
|
name: Scalars['String']['output'];
|
|
6684
|
+
/** The organization that received this investment (portfolio company). */
|
|
6685
|
+
organization?: Maybe<Organization>;
|
|
6638
6686
|
/** The owner of the investment. */
|
|
6639
6687
|
owner: Owner;
|
|
6688
|
+
/** The post-money valuation. */
|
|
6689
|
+
postValuation?: Maybe<Scalars['Decimal']['output']>;
|
|
6690
|
+
/** The currency code for the post-money valuation. */
|
|
6691
|
+
postValuationCurrency?: Maybe<Scalars['String']['output']>;
|
|
6692
|
+
/** Whether pro-rata rights were obtained. */
|
|
6693
|
+
proRataRights?: Maybe<Scalars['Boolean']['output']>;
|
|
6640
6694
|
/** The relevance score of the investment. */
|
|
6641
6695
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6696
|
+
/** The total round size. */
|
|
6697
|
+
roundSize?: Maybe<Scalars['Decimal']['output']>;
|
|
6698
|
+
/** The currency code for the round size. */
|
|
6699
|
+
roundSizeCurrency?: Maybe<Scalars['String']['output']>;
|
|
6700
|
+
/** The number of shares owned. */
|
|
6701
|
+
sharesOwned?: Maybe<Scalars['Decimal']['output']>;
|
|
6702
|
+
/** The investment stage. */
|
|
6703
|
+
stage?: Maybe<Scalars['String']['output']>;
|
|
6642
6704
|
/** The state of the investment (i.e. created, enabled). */
|
|
6643
6705
|
state: EntityState;
|
|
6706
|
+
/** The investment status. */
|
|
6707
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
6644
6708
|
/** The JSON-LD value of the investment. */
|
|
6645
6709
|
thing?: Maybe<Scalars['String']['output']>;
|
|
6646
6710
|
/** The investment URI. */
|
|
6647
6711
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
6712
|
+
/** The investment vehicle type. */
|
|
6713
|
+
vehicle?: Maybe<Scalars['String']['output']>;
|
|
6714
|
+
/** The workflow associated with this investment. */
|
|
6715
|
+
workflow?: Maybe<Workflow>;
|
|
6648
6716
|
};
|
|
6649
6717
|
/** Represents an investment facet. */
|
|
6650
6718
|
export type InvestmentFacet = {
|
|
@@ -6734,6 +6802,8 @@ export type InvestmentFund = {
|
|
|
6734
6802
|
amountCurrency?: Maybe<Scalars['String']['output']>;
|
|
6735
6803
|
/** The geo-boundary of the investmentfund, as GeoJSON Feature with Polygon geometry. */
|
|
6736
6804
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
6805
|
+
/** The child funds (sub-funds within this fund). */
|
|
6806
|
+
childFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
6737
6807
|
/** The creation date of the investmentfund. */
|
|
6738
6808
|
creationDate: Scalars['DateTime']['output'];
|
|
6739
6809
|
/** The investmentfund description. */
|
|
@@ -6742,12 +6812,16 @@ export type InvestmentFund = {
|
|
|
6742
6812
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6743
6813
|
/** The feeds that discovered this investmentfund. */
|
|
6744
6814
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
6815
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6816
|
+
fundType?: Maybe<Scalars['String']['output']>;
|
|
6745
6817
|
/** The H3 index of the investmentfund. */
|
|
6746
6818
|
h3?: Maybe<H3>;
|
|
6747
6819
|
/** The ID of the investmentfund. */
|
|
6748
6820
|
id: Scalars['ID']['output'];
|
|
6749
6821
|
/** The investmentfund external identifier. */
|
|
6750
6822
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
6823
|
+
/** The individual investments made by this fund. */
|
|
6824
|
+
investments?: Maybe<Array<Maybe<Investment>>>;
|
|
6751
6825
|
/** The extracted hyperlinks. */
|
|
6752
6826
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6753
6827
|
/** The geo-location of the investmentfund. */
|
|
@@ -6756,16 +6830,28 @@ export type InvestmentFund = {
|
|
|
6756
6830
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6757
6831
|
/** The name of the investmentfund. */
|
|
6758
6832
|
name: Scalars['String']['output'];
|
|
6833
|
+
/** The portfolio companies this fund has invested in. */
|
|
6834
|
+
organizations?: Maybe<Array<Maybe<Organization>>>;
|
|
6759
6835
|
/** The owner of the investmentfund. */
|
|
6760
6836
|
owner: Owner;
|
|
6837
|
+
/** The parent fund (for fund-of-funds structures). */
|
|
6838
|
+
parentFund?: Maybe<InvestmentFund>;
|
|
6761
6839
|
/** The relevance score of the investmentfund. */
|
|
6762
6840
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6763
6841
|
/** The state of the investmentfund (i.e. created, enabled). */
|
|
6764
6842
|
state: EntityState;
|
|
6843
|
+
/** The target fund size. */
|
|
6844
|
+
targetSize?: Maybe<Scalars['Decimal']['output']>;
|
|
6845
|
+
/** The currency for the target fund size. */
|
|
6846
|
+
targetSizeCurrency?: Maybe<Scalars['String']['output']>;
|
|
6765
6847
|
/** The JSON-LD value of the investmentfund. */
|
|
6766
6848
|
thing?: Maybe<Scalars['String']['output']>;
|
|
6767
6849
|
/** The investmentfund URI. */
|
|
6768
6850
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
6851
|
+
/** The fund vintage year. */
|
|
6852
|
+
vintage?: Maybe<Scalars['Int']['output']>;
|
|
6853
|
+
/** The workflow associated with this investment fund. */
|
|
6854
|
+
workflow?: Maybe<Workflow>;
|
|
6769
6855
|
};
|
|
6770
6856
|
/** Represents an investment fund facet. */
|
|
6771
6857
|
export type InvestmentFundFacet = {
|
|
@@ -6854,14 +6940,22 @@ export type InvestmentFundInput = {
|
|
|
6854
6940
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6855
6941
|
/** The investmentfund description. */
|
|
6856
6942
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6943
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6944
|
+
fundType?: InputMaybe<Scalars['String']['input']>;
|
|
6857
6945
|
/** The investmentfund external identifier. */
|
|
6858
6946
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6859
6947
|
/** The investmentfund geo-location. */
|
|
6860
6948
|
location?: InputMaybe<PointInput>;
|
|
6861
6949
|
/** The name of the investmentfund. */
|
|
6862
6950
|
name: Scalars['String']['input'];
|
|
6951
|
+
/** The target fund size. */
|
|
6952
|
+
targetSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6953
|
+
/** The currency for the target fund size. */
|
|
6954
|
+
targetSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6863
6955
|
/** The investmentfund URI. */
|
|
6864
6956
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6957
|
+
/** The fund vintage year. */
|
|
6958
|
+
vintage?: InputMaybe<Scalars['Int']['input']>;
|
|
6865
6959
|
};
|
|
6866
6960
|
/** Represents investment fund query results. */
|
|
6867
6961
|
export type InvestmentFundResults = {
|
|
@@ -6881,6 +6975,8 @@ export type InvestmentFundUpdateInput = {
|
|
|
6881
6975
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6882
6976
|
/** The investmentfund description. */
|
|
6883
6977
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6978
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6979
|
+
fundType?: InputMaybe<Scalars['String']['input']>;
|
|
6884
6980
|
/** The ID of the investmentfund to update. */
|
|
6885
6981
|
id: Scalars['ID']['input'];
|
|
6886
6982
|
/** The investmentfund external identifier. */
|
|
@@ -6889,8 +6985,14 @@ export type InvestmentFundUpdateInput = {
|
|
|
6889
6985
|
location?: InputMaybe<PointInput>;
|
|
6890
6986
|
/** The name of the investmentfund. */
|
|
6891
6987
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6988
|
+
/** The target fund size. */
|
|
6989
|
+
targetSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6990
|
+
/** The currency for the target fund size. */
|
|
6991
|
+
targetSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6892
6992
|
/** The investmentfund URI. */
|
|
6893
6993
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6994
|
+
/** The fund vintage year. */
|
|
6995
|
+
vintage?: InputMaybe<Scalars['Int']['input']>;
|
|
6894
6996
|
};
|
|
6895
6997
|
/** Represents an investment. */
|
|
6896
6998
|
export type InvestmentInput = {
|
|
@@ -6900,16 +7002,42 @@ export type InvestmentInput = {
|
|
|
6900
7002
|
amountCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6901
7003
|
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6902
7004
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
7005
|
+
/** The current price per share. */
|
|
7006
|
+
currentPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6903
7007
|
/** The investment description. */
|
|
6904
7008
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7009
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
7010
|
+
discountPercent?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7011
|
+
/** The entry price per share. */
|
|
7012
|
+
entryPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6905
7013
|
/** The investment external identifier. */
|
|
6906
7014
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
7015
|
+
/** The date of the investment. */
|
|
7016
|
+
investmentDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6907
7017
|
/** The investment geo-location. */
|
|
6908
7018
|
location?: InputMaybe<PointInput>;
|
|
6909
7019
|
/** The name of the investment. */
|
|
6910
7020
|
name: Scalars['String']['input'];
|
|
7021
|
+
/** The post-money valuation. */
|
|
7022
|
+
postValuation?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7023
|
+
/** The currency code for the post-money valuation. */
|
|
7024
|
+
postValuationCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7025
|
+
/** Whether pro-rata rights were obtained. */
|
|
7026
|
+
proRataRights?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7027
|
+
/** The total round size. */
|
|
7028
|
+
roundSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7029
|
+
/** The currency code for the round size. */
|
|
7030
|
+
roundSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7031
|
+
/** The number of shares owned. */
|
|
7032
|
+
sharesOwned?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7033
|
+
/** The investment stage. */
|
|
7034
|
+
stage?: InputMaybe<Scalars['String']['input']>;
|
|
7035
|
+
/** The investment status. */
|
|
7036
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6911
7037
|
/** The investment URI. */
|
|
6912
7038
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
7039
|
+
/** The investment vehicle type. */
|
|
7040
|
+
vehicle?: InputMaybe<Scalars['String']['input']>;
|
|
6913
7041
|
};
|
|
6914
7042
|
/** Represents investment query results. */
|
|
6915
7043
|
export type InvestmentResults = {
|
|
@@ -6927,18 +7055,44 @@ export type InvestmentUpdateInput = {
|
|
|
6927
7055
|
amountCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6928
7056
|
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6929
7057
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
7058
|
+
/** The current price per share. */
|
|
7059
|
+
currentPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6930
7060
|
/** The investment description. */
|
|
6931
7061
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7062
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
7063
|
+
discountPercent?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7064
|
+
/** The entry price per share. */
|
|
7065
|
+
entryPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6932
7066
|
/** The ID of the investment to update. */
|
|
6933
7067
|
id: Scalars['ID']['input'];
|
|
6934
7068
|
/** The investment external identifier. */
|
|
6935
7069
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
7070
|
+
/** The date of the investment. */
|
|
7071
|
+
investmentDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6936
7072
|
/** The investment geo-location. */
|
|
6937
7073
|
location?: InputMaybe<PointInput>;
|
|
6938
7074
|
/** The name of the investment. */
|
|
6939
7075
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7076
|
+
/** The post-money valuation. */
|
|
7077
|
+
postValuation?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7078
|
+
/** The currency code for the post-money valuation. */
|
|
7079
|
+
postValuationCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7080
|
+
/** Whether pro-rata rights were obtained. */
|
|
7081
|
+
proRataRights?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7082
|
+
/** The total round size. */
|
|
7083
|
+
roundSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7084
|
+
/** The currency code for the round size. */
|
|
7085
|
+
roundSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7086
|
+
/** The number of shares owned. */
|
|
7087
|
+
sharesOwned?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7088
|
+
/** The investment stage. */
|
|
7089
|
+
stage?: InputMaybe<Scalars['String']['input']>;
|
|
7090
|
+
/** The investment status. */
|
|
7091
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6940
7092
|
/** The investment URI. */
|
|
6941
7093
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
7094
|
+
/** The investment vehicle type. */
|
|
7095
|
+
vehicle?: InputMaybe<Scalars['String']['input']>;
|
|
6942
7096
|
};
|
|
6943
7097
|
/** Represents issue feed properties. */
|
|
6944
7098
|
export type IssueFeedProperties = {
|
|
@@ -7248,6 +7402,8 @@ export type LinearProjectsInput = {
|
|
|
7248
7402
|
/** Represents a hyperlink. */
|
|
7249
7403
|
export type LinkReference = {
|
|
7250
7404
|
__typename?: 'LinkReference';
|
|
7405
|
+
/** Text excerpts from the linked source, used as citations for enrichment provenance. */
|
|
7406
|
+
excerpts?: Maybe<Scalars['String']['output']>;
|
|
7251
7407
|
/** The hyperlink type. */
|
|
7252
7408
|
linkType?: Maybe<LinkTypes>;
|
|
7253
7409
|
/** The hyperlink URI. */
|
|
@@ -7255,6 +7411,8 @@ export type LinkReference = {
|
|
|
7255
7411
|
};
|
|
7256
7412
|
/** Represents a hyperlink. */
|
|
7257
7413
|
export type LinkReferenceInput = {
|
|
7414
|
+
/** Text excerpts from the linked source, used as citations for enrichment provenance. */
|
|
7415
|
+
excerpts?: InputMaybe<Scalars['String']['input']>;
|
|
7258
7416
|
/** The hyperlink type. */
|
|
7259
7417
|
linkType?: InputMaybe<LinkTypes>;
|
|
7260
7418
|
/** The hyperlink URI. */
|
|
@@ -7516,6 +7674,8 @@ export type MedicalCondition = {
|
|
|
7516
7674
|
thing?: Maybe<Scalars['String']['output']>;
|
|
7517
7675
|
/** The medicalcondition URI. */
|
|
7518
7676
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
7677
|
+
/** The workflow associated with this medical condition. */
|
|
7678
|
+
workflow?: Maybe<Workflow>;
|
|
7519
7679
|
};
|
|
7520
7680
|
/** Represents a medical condition facet. */
|
|
7521
7681
|
export type MedicalConditionFacet = {
|
|
@@ -7673,6 +7833,8 @@ export type MedicalContraindication = {
|
|
|
7673
7833
|
thing?: Maybe<Scalars['String']['output']>;
|
|
7674
7834
|
/** The medicalcontraindication URI. */
|
|
7675
7835
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
7836
|
+
/** The workflow associated with this medical contraindication. */
|
|
7837
|
+
workflow?: Maybe<Workflow>;
|
|
7676
7838
|
};
|
|
7677
7839
|
/** Represents a medical contraindication facet. */
|
|
7678
7840
|
export type MedicalContraindicationFacet = {
|
|
@@ -7830,6 +7992,8 @@ export type MedicalDevice = {
|
|
|
7830
7992
|
thing?: Maybe<Scalars['String']['output']>;
|
|
7831
7993
|
/** The medicaldevice URI. */
|
|
7832
7994
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
7995
|
+
/** The workflow associated with this medical device. */
|
|
7996
|
+
workflow?: Maybe<Workflow>;
|
|
7833
7997
|
};
|
|
7834
7998
|
/** Represents a medical device facet. */
|
|
7835
7999
|
export type MedicalDeviceFacet = {
|
|
@@ -7987,6 +8151,8 @@ export type MedicalDrug = {
|
|
|
7987
8151
|
thing?: Maybe<Scalars['String']['output']>;
|
|
7988
8152
|
/** The medicaldrug URI. */
|
|
7989
8153
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
8154
|
+
/** The workflow associated with this medical drug. */
|
|
8155
|
+
workflow?: Maybe<Workflow>;
|
|
7990
8156
|
};
|
|
7991
8157
|
/** Represents a medical drug class. */
|
|
7992
8158
|
export type MedicalDrugClass = {
|
|
@@ -8027,6 +8193,8 @@ export type MedicalDrugClass = {
|
|
|
8027
8193
|
thing?: Maybe<Scalars['String']['output']>;
|
|
8028
8194
|
/** The medicaldrugclass URI. */
|
|
8029
8195
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
8196
|
+
/** The workflow associated with this medical drug class. */
|
|
8197
|
+
workflow?: Maybe<Workflow>;
|
|
8030
8198
|
};
|
|
8031
8199
|
/** Represents a medical drug class facet. */
|
|
8032
8200
|
export type MedicalDrugClassFacet = {
|
|
@@ -8301,6 +8469,8 @@ export type MedicalGuideline = {
|
|
|
8301
8469
|
thing?: Maybe<Scalars['String']['output']>;
|
|
8302
8470
|
/** The medicalguideline URI. */
|
|
8303
8471
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
8472
|
+
/** The workflow associated with this medical guideline. */
|
|
8473
|
+
workflow?: Maybe<Workflow>;
|
|
8304
8474
|
};
|
|
8305
8475
|
/** Represents a medical guideline facet. */
|
|
8306
8476
|
export type MedicalGuidelineFacet = {
|
|
@@ -8458,6 +8628,8 @@ export type MedicalIndication = {
|
|
|
8458
8628
|
thing?: Maybe<Scalars['String']['output']>;
|
|
8459
8629
|
/** The medicalindication URI. */
|
|
8460
8630
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
8631
|
+
/** The workflow associated with this medical indication. */
|
|
8632
|
+
workflow?: Maybe<Workflow>;
|
|
8461
8633
|
};
|
|
8462
8634
|
/** Represents a medical indication facet. */
|
|
8463
8635
|
export type MedicalIndicationFacet = {
|
|
@@ -8615,6 +8787,8 @@ export type MedicalProcedure = {
|
|
|
8615
8787
|
thing?: Maybe<Scalars['String']['output']>;
|
|
8616
8788
|
/** The medicalprocedure URI. */
|
|
8617
8789
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
8790
|
+
/** The workflow associated with this medical procedure. */
|
|
8791
|
+
workflow?: Maybe<Workflow>;
|
|
8618
8792
|
};
|
|
8619
8793
|
/** Represents a medical procedure facet. */
|
|
8620
8794
|
export type MedicalProcedureFacet = {
|
|
@@ -8774,6 +8948,8 @@ export type MedicalStudy = {
|
|
|
8774
8948
|
thing?: Maybe<Scalars['String']['output']>;
|
|
8775
8949
|
/** The medicalstudy URI. */
|
|
8776
8950
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
8951
|
+
/** The workflow associated with this medical study. */
|
|
8952
|
+
workflow?: Maybe<Workflow>;
|
|
8777
8953
|
};
|
|
8778
8954
|
/** Represents a medical study facet. */
|
|
8779
8955
|
export type MedicalStudyFacet = {
|
|
@@ -8937,6 +9113,8 @@ export type MedicalTest = {
|
|
|
8937
9113
|
thing?: Maybe<Scalars['String']['output']>;
|
|
8938
9114
|
/** The medicaltest URI. */
|
|
8939
9115
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
9116
|
+
/** The workflow associated with this medical test. */
|
|
9117
|
+
workflow?: Maybe<Workflow>;
|
|
8940
9118
|
};
|
|
8941
9119
|
/** Represents a medical test facet. */
|
|
8942
9120
|
export type MedicalTestFacet = {
|
|
@@ -9094,6 +9272,8 @@ export type MedicalTherapy = {
|
|
|
9094
9272
|
thing?: Maybe<Scalars['String']['output']>;
|
|
9095
9273
|
/** The medicaltherapy URI. */
|
|
9096
9274
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
9275
|
+
/** The workflow associated with this medical therapy. */
|
|
9276
|
+
workflow?: Maybe<Workflow>;
|
|
9097
9277
|
};
|
|
9098
9278
|
/** Represents a medical therapy facet. */
|
|
9099
9279
|
export type MedicalTherapyFacet = {
|
|
@@ -12178,10 +12358,16 @@ export type Organization = {
|
|
|
12178
12358
|
creationDate: Scalars['DateTime']['output'];
|
|
12179
12359
|
/** The organization description. */
|
|
12180
12360
|
description?: Maybe<Scalars['String']['output']>;
|
|
12361
|
+
/** The email address of the organization. */
|
|
12362
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
12363
|
+
/** The employee(s) of this organization. */
|
|
12364
|
+
employees?: Maybe<Array<Maybe<Person>>>;
|
|
12181
12365
|
/** The EPSG code for spatial reference of the organization. */
|
|
12182
12366
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
12183
12367
|
/** The feeds that discovered this organization. */
|
|
12184
12368
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
12369
|
+
/** The founder(s) of this organization. */
|
|
12370
|
+
founders?: Maybe<Array<Maybe<Person>>>;
|
|
12185
12371
|
/** The founding date of the organization. */
|
|
12186
12372
|
foundingDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12187
12373
|
/** The H3 index of the organization. */
|
|
@@ -12196,16 +12382,30 @@ export type Organization = {
|
|
|
12196
12382
|
investment?: Maybe<Scalars['Decimal']['output']>;
|
|
12197
12383
|
/** The currency of the investment into the organization. */
|
|
12198
12384
|
investmentCurrency?: Maybe<Scalars['String']['output']>;
|
|
12385
|
+
/** Investments received by this organization (as portfolio company). */
|
|
12386
|
+
investmentsReceived?: Maybe<Array<Maybe<Investment>>>;
|
|
12387
|
+
/** Investment funds that have invested in this organization. */
|
|
12388
|
+
investorFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
12389
|
+
/** The official legal name of the organization. */
|
|
12390
|
+
legalName?: Maybe<Scalars['String']['output']>;
|
|
12199
12391
|
/** The extracted hyperlinks. */
|
|
12200
12392
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
12201
12393
|
/** The geo-location of the organization. */
|
|
12202
12394
|
location?: Maybe<Point>;
|
|
12395
|
+
/** The location(s) of this organization. */
|
|
12396
|
+
locations?: Maybe<Array<Maybe<Place>>>;
|
|
12397
|
+
/** Organization(s) this organization is a member of. */
|
|
12398
|
+
memberOf?: Maybe<Array<Maybe<Organization>>>;
|
|
12399
|
+
/** The member(s) of this organization. */
|
|
12400
|
+
members?: Maybe<Array<Maybe<Person>>>;
|
|
12203
12401
|
/** The modified date of the organization. */
|
|
12204
12402
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12205
12403
|
/** The name of the organization. */
|
|
12206
12404
|
name: Scalars['String']['output'];
|
|
12207
12405
|
/** The owner of the organization. */
|
|
12208
12406
|
owner: Owner;
|
|
12407
|
+
/** The parent organization. */
|
|
12408
|
+
parentOrganization?: Maybe<Organization>;
|
|
12209
12409
|
/** The relevance score of the organization. */
|
|
12210
12410
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
12211
12411
|
/** The revenue of the organization. */
|
|
@@ -12214,10 +12414,16 @@ export type Organization = {
|
|
|
12214
12414
|
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
12215
12415
|
/** The state of the organization (i.e. created, enabled). */
|
|
12216
12416
|
state: EntityState;
|
|
12417
|
+
/** Sub-organization(s) of this organization. */
|
|
12418
|
+
subOrganizations?: Maybe<Array<Maybe<Organization>>>;
|
|
12419
|
+
/** The telephone number of the organization. */
|
|
12420
|
+
telephone?: Maybe<Scalars['String']['output']>;
|
|
12217
12421
|
/** The JSON-LD value of the organization. */
|
|
12218
12422
|
thing?: Maybe<Scalars['String']['output']>;
|
|
12219
12423
|
/** The organization URI. */
|
|
12220
12424
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
12425
|
+
/** The workflow associated with this organization. */
|
|
12426
|
+
workflow?: Maybe<Workflow>;
|
|
12221
12427
|
};
|
|
12222
12428
|
/** Represents an organization facet. */
|
|
12223
12429
|
export type OrganizationFacet = {
|
|
@@ -12306,6 +12512,8 @@ export type OrganizationInput = {
|
|
|
12306
12512
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
12307
12513
|
/** The organization description. */
|
|
12308
12514
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
12515
|
+
/** The email address of the organization. */
|
|
12516
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
12309
12517
|
/** The founding date of the organization. */
|
|
12310
12518
|
foundingDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12311
12519
|
/** The organization external identifier. */
|
|
@@ -12316,6 +12524,8 @@ export type OrganizationInput = {
|
|
|
12316
12524
|
investment?: InputMaybe<Scalars['Decimal']['input']>;
|
|
12317
12525
|
/** The currency of the investment into the organization. */
|
|
12318
12526
|
investmentCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
12527
|
+
/** The official legal name of the organization. */
|
|
12528
|
+
legalName?: InputMaybe<Scalars['String']['input']>;
|
|
12319
12529
|
/** The organization geo-location. */
|
|
12320
12530
|
location?: InputMaybe<PointInput>;
|
|
12321
12531
|
/** The name of the organization. */
|
|
@@ -12324,6 +12534,8 @@ export type OrganizationInput = {
|
|
|
12324
12534
|
revenue?: InputMaybe<Scalars['Decimal']['input']>;
|
|
12325
12535
|
/** The currency of the revenue of the organization. */
|
|
12326
12536
|
revenueCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
12537
|
+
/** The telephone number of the organization. */
|
|
12538
|
+
telephone?: InputMaybe<Scalars['String']['input']>;
|
|
12327
12539
|
/** The organization URI. */
|
|
12328
12540
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
12329
12541
|
};
|
|
@@ -12345,6 +12557,8 @@ export type OrganizationUpdateInput = {
|
|
|
12345
12557
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
12346
12558
|
/** The organization description. */
|
|
12347
12559
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
12560
|
+
/** The email address of the organization. */
|
|
12561
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
12348
12562
|
/** The founding date of the organization. */
|
|
12349
12563
|
foundingDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12350
12564
|
/** The ID of the organization to update. */
|
|
@@ -12357,6 +12571,8 @@ export type OrganizationUpdateInput = {
|
|
|
12357
12571
|
investment?: InputMaybe<Scalars['Decimal']['input']>;
|
|
12358
12572
|
/** The currency of the investment into the organization. */
|
|
12359
12573
|
investmentCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
12574
|
+
/** The official legal name of the organization. */
|
|
12575
|
+
legalName?: InputMaybe<Scalars['String']['input']>;
|
|
12360
12576
|
/** The organization geo-location. */
|
|
12361
12577
|
location?: InputMaybe<PointInput>;
|
|
12362
12578
|
/** The name of the organization. */
|
|
@@ -12365,6 +12581,8 @@ export type OrganizationUpdateInput = {
|
|
|
12365
12581
|
revenue?: InputMaybe<Scalars['Decimal']['input']>;
|
|
12366
12582
|
/** The currency of the revenue of the organization. */
|
|
12367
12583
|
revenueCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
12584
|
+
/** The telephone number of the organization. */
|
|
12585
|
+
telephone?: InputMaybe<Scalars['String']['input']>;
|
|
12368
12586
|
/** The organization URI. */
|
|
12369
12587
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
12370
12588
|
};
|
|
@@ -12524,10 +12742,14 @@ export type Person = {
|
|
|
12524
12742
|
alumniOf?: Maybe<Array<Maybe<Organization>>>;
|
|
12525
12743
|
/** The birth date of the person. */
|
|
12526
12744
|
birthDate?: Maybe<Scalars['Date']['output']>;
|
|
12745
|
+
/** The place where the person was born. */
|
|
12746
|
+
birthPlace?: Maybe<Place>;
|
|
12527
12747
|
/** The geo-boundary of the person, as GeoJSON Feature with Polygon geometry. */
|
|
12528
12748
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
12529
12749
|
/** The creation date of the person. */
|
|
12530
12750
|
creationDate: Scalars['DateTime']['output'];
|
|
12751
|
+
/** The place where the person died. */
|
|
12752
|
+
deathPlace?: Maybe<Place>;
|
|
12531
12753
|
/** The person description. */
|
|
12532
12754
|
description?: Maybe<Scalars['String']['output']>;
|
|
12533
12755
|
/** The education of the person. */
|
|
@@ -12544,6 +12766,8 @@ export type Person = {
|
|
|
12544
12766
|
givenName?: Maybe<Scalars['String']['output']>;
|
|
12545
12767
|
/** The H3 index of the person. */
|
|
12546
12768
|
h3?: Maybe<H3>;
|
|
12769
|
+
/** The place(s) where the person lives. */
|
|
12770
|
+
homeLocation?: Maybe<Array<Maybe<Place>>>;
|
|
12547
12771
|
/** The ID of the person. */
|
|
12548
12772
|
id: Scalars['ID']['output'];
|
|
12549
12773
|
/** The person external identifier. */
|
|
@@ -12574,6 +12798,10 @@ export type Person = {
|
|
|
12574
12798
|
title?: Maybe<Scalars['String']['output']>;
|
|
12575
12799
|
/** The person URI. */
|
|
12576
12800
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
12801
|
+
/** The place(s) where the person works. */
|
|
12802
|
+
workLocation?: Maybe<Array<Maybe<Place>>>;
|
|
12803
|
+
/** The workflow associated with this person. */
|
|
12804
|
+
workflow?: Maybe<Workflow>;
|
|
12577
12805
|
/** The organizations the person works for. */
|
|
12578
12806
|
worksFor?: Maybe<Array<Maybe<Organization>>>;
|
|
12579
12807
|
};
|
|
@@ -12796,16 +13024,24 @@ export type Place = {
|
|
|
12796
13024
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12797
13025
|
/** The name of the place. */
|
|
12798
13026
|
name: Scalars['String']['output'];
|
|
13027
|
+
/** The opening hours of the place. */
|
|
13028
|
+
openingHours?: Maybe<Scalars['String']['output']>;
|
|
12799
13029
|
/** The owner of the place. */
|
|
12800
13030
|
owner: Owner;
|
|
13031
|
+
/** The price range of the place. */
|
|
13032
|
+
priceRange?: Maybe<Scalars['String']['output']>;
|
|
12801
13033
|
/** The relevance score of the place. */
|
|
12802
13034
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
12803
13035
|
/** The state of the place (i.e. created, enabled). */
|
|
12804
13036
|
state: EntityState;
|
|
13037
|
+
/** The telephone number of the place. */
|
|
13038
|
+
telephone?: Maybe<Scalars['String']['output']>;
|
|
12805
13039
|
/** The JSON-LD value of the place. */
|
|
12806
13040
|
thing?: Maybe<Scalars['String']['output']>;
|
|
12807
13041
|
/** The place URI. */
|
|
12808
13042
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
13043
|
+
/** The workflow associated with this place. */
|
|
13044
|
+
workflow?: Maybe<Workflow>;
|
|
12809
13045
|
};
|
|
12810
13046
|
/** Represents a place facet. */
|
|
12811
13047
|
export type PlaceFacet = {
|
|
@@ -12898,6 +13134,12 @@ export type PlaceInput = {
|
|
|
12898
13134
|
location?: InputMaybe<PointInput>;
|
|
12899
13135
|
/** The name of the place. */
|
|
12900
13136
|
name: Scalars['String']['input'];
|
|
13137
|
+
/** The opening hours of the place. */
|
|
13138
|
+
openingHours?: InputMaybe<Scalars['String']['input']>;
|
|
13139
|
+
/** The price range of the place. */
|
|
13140
|
+
priceRange?: InputMaybe<Scalars['String']['input']>;
|
|
13141
|
+
/** The telephone number of the place. */
|
|
13142
|
+
telephone?: InputMaybe<Scalars['String']['input']>;
|
|
12901
13143
|
/** The place URI. */
|
|
12902
13144
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
12903
13145
|
};
|
|
@@ -12927,6 +13169,12 @@ export type PlaceUpdateInput = {
|
|
|
12927
13169
|
location?: InputMaybe<PointInput>;
|
|
12928
13170
|
/** The name of the place. */
|
|
12929
13171
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
13172
|
+
/** The opening hours of the place. */
|
|
13173
|
+
openingHours?: InputMaybe<Scalars['String']['input']>;
|
|
13174
|
+
/** The price range of the place. */
|
|
13175
|
+
priceRange?: InputMaybe<Scalars['String']['input']>;
|
|
13176
|
+
/** The telephone number of the place. */
|
|
13177
|
+
telephone?: InputMaybe<Scalars['String']['input']>;
|
|
12930
13178
|
/** The place URI. */
|
|
12931
13179
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
12932
13180
|
};
|
|
@@ -13079,6 +13327,8 @@ export type Product = {
|
|
|
13079
13327
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
13080
13328
|
/** The feeds that discovered this product. */
|
|
13081
13329
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
13330
|
+
/** The Global Trade Item Number (GTIN). */
|
|
13331
|
+
gtin?: Maybe<Scalars['String']['output']>;
|
|
13082
13332
|
/** The H3 index of the product. */
|
|
13083
13333
|
h3?: Maybe<H3>;
|
|
13084
13334
|
/** The ID of the product. */
|
|
@@ -13095,6 +13345,8 @@ export type Product = {
|
|
|
13095
13345
|
model?: Maybe<Scalars['String']['output']>;
|
|
13096
13346
|
/** The modified date of the product. */
|
|
13097
13347
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
13348
|
+
/** The Manufacturer Part Number (MPN). */
|
|
13349
|
+
mpn?: Maybe<Scalars['String']['output']>;
|
|
13098
13350
|
/** The name of the product. */
|
|
13099
13351
|
name: Scalars['String']['output'];
|
|
13100
13352
|
/** The owner of the product. */
|
|
@@ -13115,6 +13367,8 @@ export type Product = {
|
|
|
13115
13367
|
upc?: Maybe<Scalars['String']['output']>;
|
|
13116
13368
|
/** The product URI. */
|
|
13117
13369
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
13370
|
+
/** The workflow associated with this product. */
|
|
13371
|
+
workflow?: Maybe<Workflow>;
|
|
13118
13372
|
};
|
|
13119
13373
|
/** Represents a product facet. */
|
|
13120
13374
|
export type ProductFacet = {
|
|
@@ -13217,6 +13471,8 @@ export type ProductInput = {
|
|
|
13217
13471
|
brand?: InputMaybe<Scalars['String']['input']>;
|
|
13218
13472
|
/** The product description. */
|
|
13219
13473
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
13474
|
+
/** The Global Trade Item Number (GTIN). */
|
|
13475
|
+
gtin?: InputMaybe<Scalars['String']['input']>;
|
|
13220
13476
|
/** The product external identifier. */
|
|
13221
13477
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
13222
13478
|
/** The product geo-location. */
|
|
@@ -13225,6 +13481,8 @@ export type ProductInput = {
|
|
|
13225
13481
|
manufacturer?: InputMaybe<Scalars['String']['input']>;
|
|
13226
13482
|
/** The product model. */
|
|
13227
13483
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
13484
|
+
/** The Manufacturer Part Number (MPN). */
|
|
13485
|
+
mpn?: InputMaybe<Scalars['String']['input']>;
|
|
13228
13486
|
/** The name of the product. */
|
|
13229
13487
|
name: Scalars['String']['input'];
|
|
13230
13488
|
/** The production date. */
|
|
@@ -13256,6 +13514,8 @@ export type ProductUpdateInput = {
|
|
|
13256
13514
|
brand?: InputMaybe<Scalars['String']['input']>;
|
|
13257
13515
|
/** The product description. */
|
|
13258
13516
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
13517
|
+
/** The Global Trade Item Number (GTIN). */
|
|
13518
|
+
gtin?: InputMaybe<Scalars['String']['input']>;
|
|
13259
13519
|
/** The ID of the product to update. */
|
|
13260
13520
|
id: Scalars['ID']['input'];
|
|
13261
13521
|
/** The product external identifier. */
|
|
@@ -13266,6 +13526,8 @@ export type ProductUpdateInput = {
|
|
|
13266
13526
|
manufacturer?: InputMaybe<Scalars['String']['input']>;
|
|
13267
13527
|
/** The product model. */
|
|
13268
13528
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
13529
|
+
/** The Manufacturer Part Number (MPN). */
|
|
13530
|
+
mpn?: InputMaybe<Scalars['String']['input']>;
|
|
13269
13531
|
/** The name of the product. */
|
|
13270
13532
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
13271
13533
|
/** The production date. */
|
|
@@ -14974,6 +15236,8 @@ export type Repo = {
|
|
|
14974
15236
|
id: Scalars['ID']['output'];
|
|
14975
15237
|
/** The repo external identifier. */
|
|
14976
15238
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
15239
|
+
/** The extracted hyperlinks. */
|
|
15240
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
14977
15241
|
/** The modified date of the repo. */
|
|
14978
15242
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
14979
15243
|
/** The name of the repo. */
|
|
@@ -14990,6 +15254,8 @@ export type Repo = {
|
|
|
14990
15254
|
thing?: Maybe<Scalars['String']['output']>;
|
|
14991
15255
|
/** The repo URI. */
|
|
14992
15256
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
15257
|
+
/** The workflow associated with this repo. */
|
|
15258
|
+
workflow?: Maybe<Workflow>;
|
|
14993
15259
|
};
|
|
14994
15260
|
/** Represents a repo facet. */
|
|
14995
15261
|
export type RepoFacet = {
|
|
@@ -15676,6 +15942,8 @@ export type Software = {
|
|
|
15676
15942
|
id: Scalars['ID']['output'];
|
|
15677
15943
|
/** The software external identifier. */
|
|
15678
15944
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
15945
|
+
/** The extracted hyperlinks. */
|
|
15946
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
15679
15947
|
/** The modified date of the software. */
|
|
15680
15948
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
15681
15949
|
/** The name of the software. */
|
|
@@ -15694,6 +15962,8 @@ export type Software = {
|
|
|
15694
15962
|
thing?: Maybe<Scalars['String']['output']>;
|
|
15695
15963
|
/** The software URI. */
|
|
15696
15964
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
15965
|
+
/** The workflow associated with this software. */
|
|
15966
|
+
workflow?: Maybe<Workflow>;
|
|
15697
15967
|
};
|
|
15698
15968
|
/** Represents a software facet. */
|
|
15699
15969
|
export type SoftwareFacet = {
|
|
@@ -19067,6 +19337,7 @@ export type GetContentQuery = {
|
|
|
19067
19337
|
__typename?: 'LinkReference';
|
|
19068
19338
|
uri?: any | null;
|
|
19069
19339
|
linkType?: LinkTypes | null;
|
|
19340
|
+
excerpts?: string | null;
|
|
19070
19341
|
}> | null;
|
|
19071
19342
|
observations?: Array<{
|
|
19072
19343
|
__typename?: 'Observation';
|
|
@@ -20002,6 +20273,7 @@ export type LookupContentsQuery = {
|
|
|
20002
20273
|
__typename?: 'LinkReference';
|
|
20003
20274
|
uri?: any | null;
|
|
20004
20275
|
linkType?: LinkTypes | null;
|
|
20276
|
+
excerpts?: string | null;
|
|
20005
20277
|
}> | null;
|
|
20006
20278
|
observations?: Array<{
|
|
20007
20279
|
__typename?: 'Observation';
|
|
@@ -25101,6 +25373,10 @@ export type GetEventQuery = {
|
|
|
25101
25373
|
priceCurrency?: string | null;
|
|
25102
25374
|
isAccessibleForFree?: boolean | null;
|
|
25103
25375
|
typicalAgeRange?: string | null;
|
|
25376
|
+
organizer?: string | null;
|
|
25377
|
+
performer?: string | null;
|
|
25378
|
+
sponsor?: string | null;
|
|
25379
|
+
eventStatus?: string | null;
|
|
25104
25380
|
owner: {
|
|
25105
25381
|
__typename?: 'Owner';
|
|
25106
25382
|
id: string;
|
|
@@ -25110,6 +25386,17 @@ export type GetEventQuery = {
|
|
|
25110
25386
|
id: string;
|
|
25111
25387
|
name: string;
|
|
25112
25388
|
} | null> | null;
|
|
25389
|
+
links?: Array<{
|
|
25390
|
+
__typename?: 'LinkReference';
|
|
25391
|
+
uri?: any | null;
|
|
25392
|
+
linkType?: LinkTypes | null;
|
|
25393
|
+
excerpts?: string | null;
|
|
25394
|
+
} | null> | null;
|
|
25395
|
+
workflow?: {
|
|
25396
|
+
__typename?: 'Workflow';
|
|
25397
|
+
id: string;
|
|
25398
|
+
name: string;
|
|
25399
|
+
} | null;
|
|
25113
25400
|
address?: {
|
|
25114
25401
|
__typename?: 'Address';
|
|
25115
25402
|
streetAddress?: string | null;
|
|
@@ -25151,6 +25438,10 @@ export type QueryEventsQuery = {
|
|
|
25151
25438
|
priceCurrency?: string | null;
|
|
25152
25439
|
isAccessibleForFree?: boolean | null;
|
|
25153
25440
|
typicalAgeRange?: string | null;
|
|
25441
|
+
organizer?: string | null;
|
|
25442
|
+
performer?: string | null;
|
|
25443
|
+
sponsor?: string | null;
|
|
25444
|
+
eventStatus?: string | null;
|
|
25154
25445
|
owner: {
|
|
25155
25446
|
__typename?: 'Owner';
|
|
25156
25447
|
id: string;
|
|
@@ -25160,6 +25451,17 @@ export type QueryEventsQuery = {
|
|
|
25160
25451
|
id: string;
|
|
25161
25452
|
name: string;
|
|
25162
25453
|
} | null> | null;
|
|
25454
|
+
links?: Array<{
|
|
25455
|
+
__typename?: 'LinkReference';
|
|
25456
|
+
uri?: any | null;
|
|
25457
|
+
linkType?: LinkTypes | null;
|
|
25458
|
+
excerpts?: string | null;
|
|
25459
|
+
} | null> | null;
|
|
25460
|
+
workflow?: {
|
|
25461
|
+
__typename?: 'Workflow';
|
|
25462
|
+
id: string;
|
|
25463
|
+
name: string;
|
|
25464
|
+
} | null;
|
|
25163
25465
|
address?: {
|
|
25164
25466
|
__typename?: 'Address';
|
|
25165
25467
|
streetAddress?: string | null;
|
|
@@ -26499,6 +26801,17 @@ export type GetInvestmentQuery = {
|
|
|
26499
26801
|
id: string;
|
|
26500
26802
|
name: string;
|
|
26501
26803
|
} | null> | null;
|
|
26804
|
+
links?: Array<{
|
|
26805
|
+
__typename?: 'LinkReference';
|
|
26806
|
+
uri?: any | null;
|
|
26807
|
+
linkType?: LinkTypes | null;
|
|
26808
|
+
excerpts?: string | null;
|
|
26809
|
+
} | null> | null;
|
|
26810
|
+
workflow?: {
|
|
26811
|
+
__typename?: 'Workflow';
|
|
26812
|
+
id: string;
|
|
26813
|
+
name: string;
|
|
26814
|
+
} | null;
|
|
26502
26815
|
} | null;
|
|
26503
26816
|
};
|
|
26504
26817
|
export type QueryInvestmentsQueryVariables = Exact<{
|
|
@@ -26531,6 +26844,17 @@ export type QueryInvestmentsQuery = {
|
|
|
26531
26844
|
id: string;
|
|
26532
26845
|
name: string;
|
|
26533
26846
|
} | null> | null;
|
|
26847
|
+
links?: Array<{
|
|
26848
|
+
__typename?: 'LinkReference';
|
|
26849
|
+
uri?: any | null;
|
|
26850
|
+
linkType?: LinkTypes | null;
|
|
26851
|
+
excerpts?: string | null;
|
|
26852
|
+
} | null> | null;
|
|
26853
|
+
workflow?: {
|
|
26854
|
+
__typename?: 'Workflow';
|
|
26855
|
+
id: string;
|
|
26856
|
+
name: string;
|
|
26857
|
+
} | null;
|
|
26534
26858
|
} | null> | null;
|
|
26535
26859
|
} | null;
|
|
26536
26860
|
};
|
|
@@ -26630,6 +26954,17 @@ export type GetInvestmentFundQuery = {
|
|
|
26630
26954
|
id: string;
|
|
26631
26955
|
name: string;
|
|
26632
26956
|
} | null> | null;
|
|
26957
|
+
links?: Array<{
|
|
26958
|
+
__typename?: 'LinkReference';
|
|
26959
|
+
uri?: any | null;
|
|
26960
|
+
linkType?: LinkTypes | null;
|
|
26961
|
+
excerpts?: string | null;
|
|
26962
|
+
} | null> | null;
|
|
26963
|
+
workflow?: {
|
|
26964
|
+
__typename?: 'Workflow';
|
|
26965
|
+
id: string;
|
|
26966
|
+
name: string;
|
|
26967
|
+
} | null;
|
|
26633
26968
|
} | null;
|
|
26634
26969
|
};
|
|
26635
26970
|
export type QueryInvestmentFundsQueryVariables = Exact<{
|
|
@@ -26662,6 +26997,17 @@ export type QueryInvestmentFundsQuery = {
|
|
|
26662
26997
|
id: string;
|
|
26663
26998
|
name: string;
|
|
26664
26999
|
} | null> | null;
|
|
27000
|
+
links?: Array<{
|
|
27001
|
+
__typename?: 'LinkReference';
|
|
27002
|
+
uri?: any | null;
|
|
27003
|
+
linkType?: LinkTypes | null;
|
|
27004
|
+
excerpts?: string | null;
|
|
27005
|
+
} | null> | null;
|
|
27006
|
+
workflow?: {
|
|
27007
|
+
__typename?: 'Workflow';
|
|
27008
|
+
id: string;
|
|
27009
|
+
name: string;
|
|
27010
|
+
} | null;
|
|
26665
27011
|
} | null> | null;
|
|
26666
27012
|
} | null;
|
|
26667
27013
|
};
|
|
@@ -26883,6 +27229,17 @@ export type GetMedicalConditionQuery = {
|
|
|
26883
27229
|
id: string;
|
|
26884
27230
|
name: string;
|
|
26885
27231
|
} | null> | null;
|
|
27232
|
+
links?: Array<{
|
|
27233
|
+
__typename?: 'LinkReference';
|
|
27234
|
+
uri?: any | null;
|
|
27235
|
+
linkType?: LinkTypes | null;
|
|
27236
|
+
excerpts?: string | null;
|
|
27237
|
+
} | null> | null;
|
|
27238
|
+
workflow?: {
|
|
27239
|
+
__typename?: 'Workflow';
|
|
27240
|
+
id: string;
|
|
27241
|
+
name: string;
|
|
27242
|
+
} | null;
|
|
26886
27243
|
} | null;
|
|
26887
27244
|
};
|
|
26888
27245
|
export type QueryMedicalConditionsQueryVariables = Exact<{
|
|
@@ -26915,6 +27272,17 @@ export type QueryMedicalConditionsQuery = {
|
|
|
26915
27272
|
id: string;
|
|
26916
27273
|
name: string;
|
|
26917
27274
|
} | null> | null;
|
|
27275
|
+
links?: Array<{
|
|
27276
|
+
__typename?: 'LinkReference';
|
|
27277
|
+
uri?: any | null;
|
|
27278
|
+
linkType?: LinkTypes | null;
|
|
27279
|
+
excerpts?: string | null;
|
|
27280
|
+
} | null> | null;
|
|
27281
|
+
workflow?: {
|
|
27282
|
+
__typename?: 'Workflow';
|
|
27283
|
+
id: string;
|
|
27284
|
+
name: string;
|
|
27285
|
+
} | null;
|
|
26918
27286
|
} | null> | null;
|
|
26919
27287
|
} | null;
|
|
26920
27288
|
};
|
|
@@ -27014,6 +27382,17 @@ export type GetMedicalContraindicationQuery = {
|
|
|
27014
27382
|
id: string;
|
|
27015
27383
|
name: string;
|
|
27016
27384
|
} | null> | null;
|
|
27385
|
+
links?: Array<{
|
|
27386
|
+
__typename?: 'LinkReference';
|
|
27387
|
+
uri?: any | null;
|
|
27388
|
+
linkType?: LinkTypes | null;
|
|
27389
|
+
excerpts?: string | null;
|
|
27390
|
+
} | null> | null;
|
|
27391
|
+
workflow?: {
|
|
27392
|
+
__typename?: 'Workflow';
|
|
27393
|
+
id: string;
|
|
27394
|
+
name: string;
|
|
27395
|
+
} | null;
|
|
27017
27396
|
} | null;
|
|
27018
27397
|
};
|
|
27019
27398
|
export type QueryMedicalContraindicationsQueryVariables = Exact<{
|
|
@@ -27046,6 +27425,17 @@ export type QueryMedicalContraindicationsQuery = {
|
|
|
27046
27425
|
id: string;
|
|
27047
27426
|
name: string;
|
|
27048
27427
|
} | null> | null;
|
|
27428
|
+
links?: Array<{
|
|
27429
|
+
__typename?: 'LinkReference';
|
|
27430
|
+
uri?: any | null;
|
|
27431
|
+
linkType?: LinkTypes | null;
|
|
27432
|
+
excerpts?: string | null;
|
|
27433
|
+
} | null> | null;
|
|
27434
|
+
workflow?: {
|
|
27435
|
+
__typename?: 'Workflow';
|
|
27436
|
+
id: string;
|
|
27437
|
+
name: string;
|
|
27438
|
+
} | null;
|
|
27049
27439
|
} | null> | null;
|
|
27050
27440
|
} | null;
|
|
27051
27441
|
};
|
|
@@ -27145,6 +27535,17 @@ export type GetMedicalDeviceQuery = {
|
|
|
27145
27535
|
id: string;
|
|
27146
27536
|
name: string;
|
|
27147
27537
|
} | null> | null;
|
|
27538
|
+
links?: Array<{
|
|
27539
|
+
__typename?: 'LinkReference';
|
|
27540
|
+
uri?: any | null;
|
|
27541
|
+
linkType?: LinkTypes | null;
|
|
27542
|
+
excerpts?: string | null;
|
|
27543
|
+
} | null> | null;
|
|
27544
|
+
workflow?: {
|
|
27545
|
+
__typename?: 'Workflow';
|
|
27546
|
+
id: string;
|
|
27547
|
+
name: string;
|
|
27548
|
+
} | null;
|
|
27148
27549
|
} | null;
|
|
27149
27550
|
};
|
|
27150
27551
|
export type QueryMedicalDevicesQueryVariables = Exact<{
|
|
@@ -27177,6 +27578,17 @@ export type QueryMedicalDevicesQuery = {
|
|
|
27177
27578
|
id: string;
|
|
27178
27579
|
name: string;
|
|
27179
27580
|
} | null> | null;
|
|
27581
|
+
links?: Array<{
|
|
27582
|
+
__typename?: 'LinkReference';
|
|
27583
|
+
uri?: any | null;
|
|
27584
|
+
linkType?: LinkTypes | null;
|
|
27585
|
+
excerpts?: string | null;
|
|
27586
|
+
} | null> | null;
|
|
27587
|
+
workflow?: {
|
|
27588
|
+
__typename?: 'Workflow';
|
|
27589
|
+
id: string;
|
|
27590
|
+
name: string;
|
|
27591
|
+
} | null;
|
|
27180
27592
|
} | null> | null;
|
|
27181
27593
|
} | null;
|
|
27182
27594
|
};
|
|
@@ -27276,6 +27688,17 @@ export type GetMedicalDrugQuery = {
|
|
|
27276
27688
|
id: string;
|
|
27277
27689
|
name: string;
|
|
27278
27690
|
} | null> | null;
|
|
27691
|
+
links?: Array<{
|
|
27692
|
+
__typename?: 'LinkReference';
|
|
27693
|
+
uri?: any | null;
|
|
27694
|
+
linkType?: LinkTypes | null;
|
|
27695
|
+
excerpts?: string | null;
|
|
27696
|
+
} | null> | null;
|
|
27697
|
+
workflow?: {
|
|
27698
|
+
__typename?: 'Workflow';
|
|
27699
|
+
id: string;
|
|
27700
|
+
name: string;
|
|
27701
|
+
} | null;
|
|
27279
27702
|
} | null;
|
|
27280
27703
|
};
|
|
27281
27704
|
export type QueryMedicalDrugsQueryVariables = Exact<{
|
|
@@ -27308,6 +27731,17 @@ export type QueryMedicalDrugsQuery = {
|
|
|
27308
27731
|
id: string;
|
|
27309
27732
|
name: string;
|
|
27310
27733
|
} | null> | null;
|
|
27734
|
+
links?: Array<{
|
|
27735
|
+
__typename?: 'LinkReference';
|
|
27736
|
+
uri?: any | null;
|
|
27737
|
+
linkType?: LinkTypes | null;
|
|
27738
|
+
excerpts?: string | null;
|
|
27739
|
+
} | null> | null;
|
|
27740
|
+
workflow?: {
|
|
27741
|
+
__typename?: 'Workflow';
|
|
27742
|
+
id: string;
|
|
27743
|
+
name: string;
|
|
27744
|
+
} | null;
|
|
27311
27745
|
} | null> | null;
|
|
27312
27746
|
} | null;
|
|
27313
27747
|
};
|
|
@@ -27407,6 +27841,17 @@ export type GetMedicalDrugClassQuery = {
|
|
|
27407
27841
|
id: string;
|
|
27408
27842
|
name: string;
|
|
27409
27843
|
} | null> | null;
|
|
27844
|
+
links?: Array<{
|
|
27845
|
+
__typename?: 'LinkReference';
|
|
27846
|
+
uri?: any | null;
|
|
27847
|
+
linkType?: LinkTypes | null;
|
|
27848
|
+
excerpts?: string | null;
|
|
27849
|
+
} | null> | null;
|
|
27850
|
+
workflow?: {
|
|
27851
|
+
__typename?: 'Workflow';
|
|
27852
|
+
id: string;
|
|
27853
|
+
name: string;
|
|
27854
|
+
} | null;
|
|
27410
27855
|
} | null;
|
|
27411
27856
|
};
|
|
27412
27857
|
export type QueryMedicalDrugClassesQueryVariables = Exact<{
|
|
@@ -27439,6 +27884,17 @@ export type QueryMedicalDrugClassesQuery = {
|
|
|
27439
27884
|
id: string;
|
|
27440
27885
|
name: string;
|
|
27441
27886
|
} | null> | null;
|
|
27887
|
+
links?: Array<{
|
|
27888
|
+
__typename?: 'LinkReference';
|
|
27889
|
+
uri?: any | null;
|
|
27890
|
+
linkType?: LinkTypes | null;
|
|
27891
|
+
excerpts?: string | null;
|
|
27892
|
+
} | null> | null;
|
|
27893
|
+
workflow?: {
|
|
27894
|
+
__typename?: 'Workflow';
|
|
27895
|
+
id: string;
|
|
27896
|
+
name: string;
|
|
27897
|
+
} | null;
|
|
27442
27898
|
} | null> | null;
|
|
27443
27899
|
} | null;
|
|
27444
27900
|
};
|
|
@@ -27538,6 +27994,17 @@ export type GetMedicalGuidelineQuery = {
|
|
|
27538
27994
|
id: string;
|
|
27539
27995
|
name: string;
|
|
27540
27996
|
} | null> | null;
|
|
27997
|
+
links?: Array<{
|
|
27998
|
+
__typename?: 'LinkReference';
|
|
27999
|
+
uri?: any | null;
|
|
28000
|
+
linkType?: LinkTypes | null;
|
|
28001
|
+
excerpts?: string | null;
|
|
28002
|
+
} | null> | null;
|
|
28003
|
+
workflow?: {
|
|
28004
|
+
__typename?: 'Workflow';
|
|
28005
|
+
id: string;
|
|
28006
|
+
name: string;
|
|
28007
|
+
} | null;
|
|
27541
28008
|
} | null;
|
|
27542
28009
|
};
|
|
27543
28010
|
export type QueryMedicalGuidelinesQueryVariables = Exact<{
|
|
@@ -27570,6 +28037,17 @@ export type QueryMedicalGuidelinesQuery = {
|
|
|
27570
28037
|
id: string;
|
|
27571
28038
|
name: string;
|
|
27572
28039
|
} | null> | null;
|
|
28040
|
+
links?: Array<{
|
|
28041
|
+
__typename?: 'LinkReference';
|
|
28042
|
+
uri?: any | null;
|
|
28043
|
+
linkType?: LinkTypes | null;
|
|
28044
|
+
excerpts?: string | null;
|
|
28045
|
+
} | null> | null;
|
|
28046
|
+
workflow?: {
|
|
28047
|
+
__typename?: 'Workflow';
|
|
28048
|
+
id: string;
|
|
28049
|
+
name: string;
|
|
28050
|
+
} | null;
|
|
27573
28051
|
} | null> | null;
|
|
27574
28052
|
} | null;
|
|
27575
28053
|
};
|
|
@@ -27669,6 +28147,17 @@ export type GetMedicalIndicationQuery = {
|
|
|
27669
28147
|
id: string;
|
|
27670
28148
|
name: string;
|
|
27671
28149
|
} | null> | null;
|
|
28150
|
+
links?: Array<{
|
|
28151
|
+
__typename?: 'LinkReference';
|
|
28152
|
+
uri?: any | null;
|
|
28153
|
+
linkType?: LinkTypes | null;
|
|
28154
|
+
excerpts?: string | null;
|
|
28155
|
+
} | null> | null;
|
|
28156
|
+
workflow?: {
|
|
28157
|
+
__typename?: 'Workflow';
|
|
28158
|
+
id: string;
|
|
28159
|
+
name: string;
|
|
28160
|
+
} | null;
|
|
27672
28161
|
} | null;
|
|
27673
28162
|
};
|
|
27674
28163
|
export type QueryMedicalIndicationsQueryVariables = Exact<{
|
|
@@ -27701,6 +28190,17 @@ export type QueryMedicalIndicationsQuery = {
|
|
|
27701
28190
|
id: string;
|
|
27702
28191
|
name: string;
|
|
27703
28192
|
} | null> | null;
|
|
28193
|
+
links?: Array<{
|
|
28194
|
+
__typename?: 'LinkReference';
|
|
28195
|
+
uri?: any | null;
|
|
28196
|
+
linkType?: LinkTypes | null;
|
|
28197
|
+
excerpts?: string | null;
|
|
28198
|
+
} | null> | null;
|
|
28199
|
+
workflow?: {
|
|
28200
|
+
__typename?: 'Workflow';
|
|
28201
|
+
id: string;
|
|
28202
|
+
name: string;
|
|
28203
|
+
} | null;
|
|
27704
28204
|
} | null> | null;
|
|
27705
28205
|
} | null;
|
|
27706
28206
|
};
|
|
@@ -27800,6 +28300,17 @@ export type GetMedicalProcedureQuery = {
|
|
|
27800
28300
|
id: string;
|
|
27801
28301
|
name: string;
|
|
27802
28302
|
} | null> | null;
|
|
28303
|
+
links?: Array<{
|
|
28304
|
+
__typename?: 'LinkReference';
|
|
28305
|
+
uri?: any | null;
|
|
28306
|
+
linkType?: LinkTypes | null;
|
|
28307
|
+
excerpts?: string | null;
|
|
28308
|
+
} | null> | null;
|
|
28309
|
+
workflow?: {
|
|
28310
|
+
__typename?: 'Workflow';
|
|
28311
|
+
id: string;
|
|
28312
|
+
name: string;
|
|
28313
|
+
} | null;
|
|
27803
28314
|
} | null;
|
|
27804
28315
|
};
|
|
27805
28316
|
export type QueryMedicalProceduresQueryVariables = Exact<{
|
|
@@ -27832,6 +28343,17 @@ export type QueryMedicalProceduresQuery = {
|
|
|
27832
28343
|
id: string;
|
|
27833
28344
|
name: string;
|
|
27834
28345
|
} | null> | null;
|
|
28346
|
+
links?: Array<{
|
|
28347
|
+
__typename?: 'LinkReference';
|
|
28348
|
+
uri?: any | null;
|
|
28349
|
+
linkType?: LinkTypes | null;
|
|
28350
|
+
excerpts?: string | null;
|
|
28351
|
+
} | null> | null;
|
|
28352
|
+
workflow?: {
|
|
28353
|
+
__typename?: 'Workflow';
|
|
28354
|
+
id: string;
|
|
28355
|
+
name: string;
|
|
28356
|
+
} | null;
|
|
27835
28357
|
} | null> | null;
|
|
27836
28358
|
} | null;
|
|
27837
28359
|
};
|
|
@@ -27931,6 +28453,17 @@ export type GetMedicalStudyQuery = {
|
|
|
27931
28453
|
id: string;
|
|
27932
28454
|
name: string;
|
|
27933
28455
|
} | null> | null;
|
|
28456
|
+
links?: Array<{
|
|
28457
|
+
__typename?: 'LinkReference';
|
|
28458
|
+
uri?: any | null;
|
|
28459
|
+
linkType?: LinkTypes | null;
|
|
28460
|
+
excerpts?: string | null;
|
|
28461
|
+
} | null> | null;
|
|
28462
|
+
workflow?: {
|
|
28463
|
+
__typename?: 'Workflow';
|
|
28464
|
+
id: string;
|
|
28465
|
+
name: string;
|
|
28466
|
+
} | null;
|
|
27934
28467
|
address?: {
|
|
27935
28468
|
__typename?: 'Address';
|
|
27936
28469
|
streetAddress?: string | null;
|
|
@@ -27971,6 +28504,17 @@ export type QueryMedicalStudiesQuery = {
|
|
|
27971
28504
|
id: string;
|
|
27972
28505
|
name: string;
|
|
27973
28506
|
} | null> | null;
|
|
28507
|
+
links?: Array<{
|
|
28508
|
+
__typename?: 'LinkReference';
|
|
28509
|
+
uri?: any | null;
|
|
28510
|
+
linkType?: LinkTypes | null;
|
|
28511
|
+
excerpts?: string | null;
|
|
28512
|
+
} | null> | null;
|
|
28513
|
+
workflow?: {
|
|
28514
|
+
__typename?: 'Workflow';
|
|
28515
|
+
id: string;
|
|
28516
|
+
name: string;
|
|
28517
|
+
} | null;
|
|
27974
28518
|
address?: {
|
|
27975
28519
|
__typename?: 'Address';
|
|
27976
28520
|
streetAddress?: string | null;
|
|
@@ -28078,6 +28622,17 @@ export type GetMedicalTestQuery = {
|
|
|
28078
28622
|
id: string;
|
|
28079
28623
|
name: string;
|
|
28080
28624
|
} | null> | null;
|
|
28625
|
+
links?: Array<{
|
|
28626
|
+
__typename?: 'LinkReference';
|
|
28627
|
+
uri?: any | null;
|
|
28628
|
+
linkType?: LinkTypes | null;
|
|
28629
|
+
excerpts?: string | null;
|
|
28630
|
+
} | null> | null;
|
|
28631
|
+
workflow?: {
|
|
28632
|
+
__typename?: 'Workflow';
|
|
28633
|
+
id: string;
|
|
28634
|
+
name: string;
|
|
28635
|
+
} | null;
|
|
28081
28636
|
} | null;
|
|
28082
28637
|
};
|
|
28083
28638
|
export type QueryMedicalTestsQueryVariables = Exact<{
|
|
@@ -28110,6 +28665,17 @@ export type QueryMedicalTestsQuery = {
|
|
|
28110
28665
|
id: string;
|
|
28111
28666
|
name: string;
|
|
28112
28667
|
} | null> | null;
|
|
28668
|
+
links?: Array<{
|
|
28669
|
+
__typename?: 'LinkReference';
|
|
28670
|
+
uri?: any | null;
|
|
28671
|
+
linkType?: LinkTypes | null;
|
|
28672
|
+
excerpts?: string | null;
|
|
28673
|
+
} | null> | null;
|
|
28674
|
+
workflow?: {
|
|
28675
|
+
__typename?: 'Workflow';
|
|
28676
|
+
id: string;
|
|
28677
|
+
name: string;
|
|
28678
|
+
} | null;
|
|
28113
28679
|
} | null> | null;
|
|
28114
28680
|
} | null;
|
|
28115
28681
|
};
|
|
@@ -28209,6 +28775,17 @@ export type GetMedicalTherapyQuery = {
|
|
|
28209
28775
|
id: string;
|
|
28210
28776
|
name: string;
|
|
28211
28777
|
} | null> | null;
|
|
28778
|
+
links?: Array<{
|
|
28779
|
+
__typename?: 'LinkReference';
|
|
28780
|
+
uri?: any | null;
|
|
28781
|
+
linkType?: LinkTypes | null;
|
|
28782
|
+
excerpts?: string | null;
|
|
28783
|
+
} | null> | null;
|
|
28784
|
+
workflow?: {
|
|
28785
|
+
__typename?: 'Workflow';
|
|
28786
|
+
id: string;
|
|
28787
|
+
name: string;
|
|
28788
|
+
} | null;
|
|
28212
28789
|
} | null;
|
|
28213
28790
|
};
|
|
28214
28791
|
export type QueryMedicalTherapiesQueryVariables = Exact<{
|
|
@@ -28241,6 +28818,17 @@ export type QueryMedicalTherapiesQuery = {
|
|
|
28241
28818
|
id: string;
|
|
28242
28819
|
name: string;
|
|
28243
28820
|
} | null> | null;
|
|
28821
|
+
links?: Array<{
|
|
28822
|
+
__typename?: 'LinkReference';
|
|
28823
|
+
uri?: any | null;
|
|
28824
|
+
linkType?: LinkTypes | null;
|
|
28825
|
+
excerpts?: string | null;
|
|
28826
|
+
} | null> | null;
|
|
28827
|
+
workflow?: {
|
|
28828
|
+
__typename?: 'Workflow';
|
|
28829
|
+
id: string;
|
|
28830
|
+
name: string;
|
|
28831
|
+
} | null;
|
|
28244
28832
|
} | null> | null;
|
|
28245
28833
|
} | null;
|
|
28246
28834
|
};
|
|
@@ -28390,6 +28978,9 @@ export type GetOrganizationQuery = {
|
|
|
28390
28978
|
identifier?: string | null;
|
|
28391
28979
|
thing?: string | null;
|
|
28392
28980
|
foundingDate?: any | null;
|
|
28981
|
+
email?: string | null;
|
|
28982
|
+
telephone?: string | null;
|
|
28983
|
+
legalName?: string | null;
|
|
28393
28984
|
industries?: Array<string | null> | null;
|
|
28394
28985
|
revenue?: any | null;
|
|
28395
28986
|
revenueCurrency?: string | null;
|
|
@@ -28404,6 +28995,17 @@ export type GetOrganizationQuery = {
|
|
|
28404
28995
|
id: string;
|
|
28405
28996
|
name: string;
|
|
28406
28997
|
} | null> | null;
|
|
28998
|
+
links?: Array<{
|
|
28999
|
+
__typename?: 'LinkReference';
|
|
29000
|
+
uri?: any | null;
|
|
29001
|
+
linkType?: LinkTypes | null;
|
|
29002
|
+
excerpts?: string | null;
|
|
29003
|
+
} | null> | null;
|
|
29004
|
+
workflow?: {
|
|
29005
|
+
__typename?: 'Workflow';
|
|
29006
|
+
id: string;
|
|
29007
|
+
name: string;
|
|
29008
|
+
} | null;
|
|
28407
29009
|
address?: {
|
|
28408
29010
|
__typename?: 'Address';
|
|
28409
29011
|
streetAddress?: string | null;
|
|
@@ -28436,6 +29038,9 @@ export type QueryOrganizationsQuery = {
|
|
|
28436
29038
|
identifier?: string | null;
|
|
28437
29039
|
thing?: string | null;
|
|
28438
29040
|
foundingDate?: any | null;
|
|
29041
|
+
email?: string | null;
|
|
29042
|
+
telephone?: string | null;
|
|
29043
|
+
legalName?: string | null;
|
|
28439
29044
|
industries?: Array<string | null> | null;
|
|
28440
29045
|
revenue?: any | null;
|
|
28441
29046
|
revenueCurrency?: string | null;
|
|
@@ -28450,6 +29055,17 @@ export type QueryOrganizationsQuery = {
|
|
|
28450
29055
|
id: string;
|
|
28451
29056
|
name: string;
|
|
28452
29057
|
} | null> | null;
|
|
29058
|
+
links?: Array<{
|
|
29059
|
+
__typename?: 'LinkReference';
|
|
29060
|
+
uri?: any | null;
|
|
29061
|
+
linkType?: LinkTypes | null;
|
|
29062
|
+
excerpts?: string | null;
|
|
29063
|
+
} | null> | null;
|
|
29064
|
+
workflow?: {
|
|
29065
|
+
__typename?: 'Workflow';
|
|
29066
|
+
id: string;
|
|
29067
|
+
name: string;
|
|
29068
|
+
} | null;
|
|
28453
29069
|
address?: {
|
|
28454
29070
|
__typename?: 'Address';
|
|
28455
29071
|
streetAddress?: string | null;
|
|
@@ -28578,6 +29194,17 @@ export type GetPersonQuery = {
|
|
|
28578
29194
|
id: string;
|
|
28579
29195
|
name: string;
|
|
28580
29196
|
} | null> | null;
|
|
29197
|
+
links?: Array<{
|
|
29198
|
+
__typename?: 'LinkReference';
|
|
29199
|
+
uri?: any | null;
|
|
29200
|
+
linkType?: LinkTypes | null;
|
|
29201
|
+
excerpts?: string | null;
|
|
29202
|
+
} | null> | null;
|
|
29203
|
+
workflow?: {
|
|
29204
|
+
__typename?: 'Workflow';
|
|
29205
|
+
id: string;
|
|
29206
|
+
name: string;
|
|
29207
|
+
} | null;
|
|
28581
29208
|
address?: {
|
|
28582
29209
|
__typename?: 'Address';
|
|
28583
29210
|
streetAddress?: string | null;
|
|
@@ -28626,6 +29253,17 @@ export type QueryPersonsQuery = {
|
|
|
28626
29253
|
id: string;
|
|
28627
29254
|
name: string;
|
|
28628
29255
|
} | null> | null;
|
|
29256
|
+
links?: Array<{
|
|
29257
|
+
__typename?: 'LinkReference';
|
|
29258
|
+
uri?: any | null;
|
|
29259
|
+
linkType?: LinkTypes | null;
|
|
29260
|
+
excerpts?: string | null;
|
|
29261
|
+
} | null> | null;
|
|
29262
|
+
workflow?: {
|
|
29263
|
+
__typename?: 'Workflow';
|
|
29264
|
+
id: string;
|
|
29265
|
+
name: string;
|
|
29266
|
+
} | null;
|
|
28629
29267
|
address?: {
|
|
28630
29268
|
__typename?: 'Address';
|
|
28631
29269
|
streetAddress?: string | null;
|
|
@@ -28737,6 +29375,9 @@ export type GetPlaceQuery = {
|
|
|
28737
29375
|
description?: string | null;
|
|
28738
29376
|
identifier?: string | null;
|
|
28739
29377
|
thing?: string | null;
|
|
29378
|
+
telephone?: string | null;
|
|
29379
|
+
openingHours?: string | null;
|
|
29380
|
+
priceRange?: string | null;
|
|
28740
29381
|
owner: {
|
|
28741
29382
|
__typename?: 'Owner';
|
|
28742
29383
|
id: string;
|
|
@@ -28746,6 +29387,17 @@ export type GetPlaceQuery = {
|
|
|
28746
29387
|
id: string;
|
|
28747
29388
|
name: string;
|
|
28748
29389
|
} | null> | null;
|
|
29390
|
+
links?: Array<{
|
|
29391
|
+
__typename?: 'LinkReference';
|
|
29392
|
+
uri?: any | null;
|
|
29393
|
+
linkType?: LinkTypes | null;
|
|
29394
|
+
excerpts?: string | null;
|
|
29395
|
+
} | null> | null;
|
|
29396
|
+
workflow?: {
|
|
29397
|
+
__typename?: 'Workflow';
|
|
29398
|
+
id: string;
|
|
29399
|
+
name: string;
|
|
29400
|
+
} | null;
|
|
28749
29401
|
address?: {
|
|
28750
29402
|
__typename?: 'Address';
|
|
28751
29403
|
streetAddress?: string | null;
|
|
@@ -28777,6 +29429,9 @@ export type QueryPlacesQuery = {
|
|
|
28777
29429
|
description?: string | null;
|
|
28778
29430
|
identifier?: string | null;
|
|
28779
29431
|
thing?: string | null;
|
|
29432
|
+
telephone?: string | null;
|
|
29433
|
+
openingHours?: string | null;
|
|
29434
|
+
priceRange?: string | null;
|
|
28780
29435
|
owner: {
|
|
28781
29436
|
__typename?: 'Owner';
|
|
28782
29437
|
id: string;
|
|
@@ -28786,6 +29441,17 @@ export type QueryPlacesQuery = {
|
|
|
28786
29441
|
id: string;
|
|
28787
29442
|
name: string;
|
|
28788
29443
|
} | null> | null;
|
|
29444
|
+
links?: Array<{
|
|
29445
|
+
__typename?: 'LinkReference';
|
|
29446
|
+
uri?: any | null;
|
|
29447
|
+
linkType?: LinkTypes | null;
|
|
29448
|
+
excerpts?: string | null;
|
|
29449
|
+
} | null> | null;
|
|
29450
|
+
workflow?: {
|
|
29451
|
+
__typename?: 'Workflow';
|
|
29452
|
+
id: string;
|
|
29453
|
+
name: string;
|
|
29454
|
+
} | null;
|
|
28789
29455
|
address?: {
|
|
28790
29456
|
__typename?: 'Address';
|
|
28791
29457
|
streetAddress?: string | null;
|
|
@@ -28902,6 +29568,8 @@ export type GetProductQuery = {
|
|
|
28902
29568
|
brand?: string | null;
|
|
28903
29569
|
upc?: string | null;
|
|
28904
29570
|
sku?: string | null;
|
|
29571
|
+
gtin?: string | null;
|
|
29572
|
+
mpn?: string | null;
|
|
28905
29573
|
releaseDate?: any | null;
|
|
28906
29574
|
productionDate?: any | null;
|
|
28907
29575
|
owner: {
|
|
@@ -28913,6 +29581,17 @@ export type GetProductQuery = {
|
|
|
28913
29581
|
id: string;
|
|
28914
29582
|
name: string;
|
|
28915
29583
|
} | null> | null;
|
|
29584
|
+
links?: Array<{
|
|
29585
|
+
__typename?: 'LinkReference';
|
|
29586
|
+
uri?: any | null;
|
|
29587
|
+
linkType?: LinkTypes | null;
|
|
29588
|
+
excerpts?: string | null;
|
|
29589
|
+
} | null> | null;
|
|
29590
|
+
workflow?: {
|
|
29591
|
+
__typename?: 'Workflow';
|
|
29592
|
+
id: string;
|
|
29593
|
+
name: string;
|
|
29594
|
+
} | null;
|
|
28916
29595
|
address?: {
|
|
28917
29596
|
__typename?: 'Address';
|
|
28918
29597
|
streetAddress?: string | null;
|
|
@@ -28949,6 +29628,8 @@ export type QueryProductsQuery = {
|
|
|
28949
29628
|
brand?: string | null;
|
|
28950
29629
|
upc?: string | null;
|
|
28951
29630
|
sku?: string | null;
|
|
29631
|
+
gtin?: string | null;
|
|
29632
|
+
mpn?: string | null;
|
|
28952
29633
|
releaseDate?: any | null;
|
|
28953
29634
|
productionDate?: any | null;
|
|
28954
29635
|
owner: {
|
|
@@ -28960,6 +29641,17 @@ export type QueryProductsQuery = {
|
|
|
28960
29641
|
id: string;
|
|
28961
29642
|
name: string;
|
|
28962
29643
|
} | null> | null;
|
|
29644
|
+
links?: Array<{
|
|
29645
|
+
__typename?: 'LinkReference';
|
|
29646
|
+
uri?: any | null;
|
|
29647
|
+
linkType?: LinkTypes | null;
|
|
29648
|
+
excerpts?: string | null;
|
|
29649
|
+
} | null> | null;
|
|
29650
|
+
workflow?: {
|
|
29651
|
+
__typename?: 'Workflow';
|
|
29652
|
+
id: string;
|
|
29653
|
+
name: string;
|
|
29654
|
+
} | null;
|
|
28963
29655
|
address?: {
|
|
28964
29656
|
__typename?: 'Address';
|
|
28965
29657
|
streetAddress?: string | null;
|
|
@@ -29294,6 +29986,17 @@ export type GetRepoQuery = {
|
|
|
29294
29986
|
id: string;
|
|
29295
29987
|
name: string;
|
|
29296
29988
|
} | null> | null;
|
|
29989
|
+
links?: Array<{
|
|
29990
|
+
__typename?: 'LinkReference';
|
|
29991
|
+
uri?: any | null;
|
|
29992
|
+
linkType?: LinkTypes | null;
|
|
29993
|
+
excerpts?: string | null;
|
|
29994
|
+
} | null> | null;
|
|
29995
|
+
workflow?: {
|
|
29996
|
+
__typename?: 'Workflow';
|
|
29997
|
+
id: string;
|
|
29998
|
+
name: string;
|
|
29999
|
+
} | null;
|
|
29297
30000
|
} | null;
|
|
29298
30001
|
};
|
|
29299
30002
|
export type QueryReposQueryVariables = Exact<{
|
|
@@ -29326,6 +30029,17 @@ export type QueryReposQuery = {
|
|
|
29326
30029
|
id: string;
|
|
29327
30030
|
name: string;
|
|
29328
30031
|
} | null> | null;
|
|
30032
|
+
links?: Array<{
|
|
30033
|
+
__typename?: 'LinkReference';
|
|
30034
|
+
uri?: any | null;
|
|
30035
|
+
linkType?: LinkTypes | null;
|
|
30036
|
+
excerpts?: string | null;
|
|
30037
|
+
} | null> | null;
|
|
30038
|
+
workflow?: {
|
|
30039
|
+
__typename?: 'Workflow';
|
|
30040
|
+
id: string;
|
|
30041
|
+
name: string;
|
|
30042
|
+
} | null;
|
|
29329
30043
|
} | null> | null;
|
|
29330
30044
|
} | null;
|
|
29331
30045
|
};
|
|
@@ -29459,6 +30173,17 @@ export type GetSoftwareQuery = {
|
|
|
29459
30173
|
id: string;
|
|
29460
30174
|
name: string;
|
|
29461
30175
|
} | null> | null;
|
|
30176
|
+
links?: Array<{
|
|
30177
|
+
__typename?: 'LinkReference';
|
|
30178
|
+
uri?: any | null;
|
|
30179
|
+
linkType?: LinkTypes | null;
|
|
30180
|
+
excerpts?: string | null;
|
|
30181
|
+
} | null> | null;
|
|
30182
|
+
workflow?: {
|
|
30183
|
+
__typename?: 'Workflow';
|
|
30184
|
+
id: string;
|
|
30185
|
+
name: string;
|
|
30186
|
+
} | null;
|
|
29462
30187
|
} | null;
|
|
29463
30188
|
};
|
|
29464
30189
|
export type QuerySoftwaresQueryVariables = Exact<{
|
|
@@ -29493,6 +30218,17 @@ export type QuerySoftwaresQuery = {
|
|
|
29493
30218
|
id: string;
|
|
29494
30219
|
name: string;
|
|
29495
30220
|
} | null> | null;
|
|
30221
|
+
links?: Array<{
|
|
30222
|
+
__typename?: 'LinkReference';
|
|
30223
|
+
uri?: any | null;
|
|
30224
|
+
linkType?: LinkTypes | null;
|
|
30225
|
+
excerpts?: string | null;
|
|
30226
|
+
} | null> | null;
|
|
30227
|
+
workflow?: {
|
|
30228
|
+
__typename?: 'Workflow';
|
|
30229
|
+
id: string;
|
|
30230
|
+
name: string;
|
|
30231
|
+
} | null;
|
|
29496
30232
|
} | null> | null;
|
|
29497
30233
|
} | null;
|
|
29498
30234
|
};
|