graphlit-client 1.0.20251123002 → 1.0.20251124002
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) */
|
|
@@ -6641,8 +6645,14 @@ export type Investment = {
|
|
|
6641
6645
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
6642
6646
|
/** The creation date of the investment. */
|
|
6643
6647
|
creationDate: Scalars['DateTime']['output'];
|
|
6648
|
+
/** The current price per share. */
|
|
6649
|
+
currentPricePerShare?: Maybe<Scalars['Decimal']['output']>;
|
|
6644
6650
|
/** The investment description. */
|
|
6645
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']>;
|
|
6646
6656
|
/** The EPSG code for spatial reference of the investment. */
|
|
6647
6657
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6648
6658
|
/** The feeds that discovered this investment. */
|
|
@@ -6653,6 +6663,10 @@ export type Investment = {
|
|
|
6653
6663
|
id: Scalars['ID']['output'];
|
|
6654
6664
|
/** The investment external identifier. */
|
|
6655
6665
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
6666
|
+
/** The date of the investment. */
|
|
6667
|
+
investmentDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6668
|
+
/** The investor fund that made this investment. */
|
|
6669
|
+
investor?: Maybe<InvestmentFund>;
|
|
6656
6670
|
/** The extracted hyperlinks. */
|
|
6657
6671
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6658
6672
|
/** The geo-location of the investment. */
|
|
@@ -6661,16 +6675,36 @@ export type Investment = {
|
|
|
6661
6675
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6662
6676
|
/** The name of the investment. */
|
|
6663
6677
|
name: Scalars['String']['output'];
|
|
6678
|
+
/** The organization that received this investment (portfolio company). */
|
|
6679
|
+
organization?: Maybe<Organization>;
|
|
6664
6680
|
/** The owner of the investment. */
|
|
6665
6681
|
owner: Owner;
|
|
6682
|
+
/** The post-money valuation. */
|
|
6683
|
+
postValuation?: Maybe<Scalars['Decimal']['output']>;
|
|
6684
|
+
/** The currency code for the post-money valuation. */
|
|
6685
|
+
postValuationCurrency?: Maybe<Scalars['String']['output']>;
|
|
6686
|
+
/** Whether pro-rata rights were obtained. */
|
|
6687
|
+
proRataRights?: Maybe<Scalars['Boolean']['output']>;
|
|
6666
6688
|
/** The relevance score of the investment. */
|
|
6667
6689
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6690
|
+
/** The total round size. */
|
|
6691
|
+
roundSize?: Maybe<Scalars['Decimal']['output']>;
|
|
6692
|
+
/** The currency code for the round size. */
|
|
6693
|
+
roundSizeCurrency?: Maybe<Scalars['String']['output']>;
|
|
6694
|
+
/** The number of shares owned. */
|
|
6695
|
+
sharesOwned?: Maybe<Scalars['Decimal']['output']>;
|
|
6696
|
+
/** The investment stage. */
|
|
6697
|
+
stage?: Maybe<Scalars['String']['output']>;
|
|
6668
6698
|
/** The state of the investment (i.e. created, enabled). */
|
|
6669
6699
|
state: EntityState;
|
|
6700
|
+
/** The investment status. */
|
|
6701
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
6670
6702
|
/** The JSON-LD value of the investment. */
|
|
6671
6703
|
thing?: Maybe<Scalars['String']['output']>;
|
|
6672
6704
|
/** The investment URI. */
|
|
6673
6705
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
6706
|
+
/** The investment vehicle type. */
|
|
6707
|
+
vehicle?: Maybe<Scalars['String']['output']>;
|
|
6674
6708
|
/** The workflow associated with this investment. */
|
|
6675
6709
|
workflow?: Maybe<Workflow>;
|
|
6676
6710
|
};
|
|
@@ -6762,6 +6796,8 @@ export type InvestmentFund = {
|
|
|
6762
6796
|
amountCurrency?: Maybe<Scalars['String']['output']>;
|
|
6763
6797
|
/** The geo-boundary of the investmentfund, as GeoJSON Feature with Polygon geometry. */
|
|
6764
6798
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
6799
|
+
/** The child funds (sub-funds within this fund). */
|
|
6800
|
+
childFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
6765
6801
|
/** The creation date of the investmentfund. */
|
|
6766
6802
|
creationDate: Scalars['DateTime']['output'];
|
|
6767
6803
|
/** The investmentfund description. */
|
|
@@ -6770,12 +6806,16 @@ export type InvestmentFund = {
|
|
|
6770
6806
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
6771
6807
|
/** The feeds that discovered this investmentfund. */
|
|
6772
6808
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
6809
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6810
|
+
fundType?: Maybe<Scalars['String']['output']>;
|
|
6773
6811
|
/** The H3 index of the investmentfund. */
|
|
6774
6812
|
h3?: Maybe<H3>;
|
|
6775
6813
|
/** The ID of the investmentfund. */
|
|
6776
6814
|
id: Scalars['ID']['output'];
|
|
6777
6815
|
/** The investmentfund external identifier. */
|
|
6778
6816
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
6817
|
+
/** The individual investments made by this fund. */
|
|
6818
|
+
investments?: Maybe<Array<Maybe<Investment>>>;
|
|
6779
6819
|
/** The extracted hyperlinks. */
|
|
6780
6820
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
6781
6821
|
/** The geo-location of the investmentfund. */
|
|
@@ -6784,16 +6824,26 @@ export type InvestmentFund = {
|
|
|
6784
6824
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6785
6825
|
/** The name of the investmentfund. */
|
|
6786
6826
|
name: Scalars['String']['output'];
|
|
6827
|
+
/** The portfolio companies this fund has invested in. */
|
|
6828
|
+
organizations?: Maybe<Array<Maybe<Organization>>>;
|
|
6787
6829
|
/** The owner of the investmentfund. */
|
|
6788
6830
|
owner: Owner;
|
|
6831
|
+
/** The parent fund (for fund-of-funds structures). */
|
|
6832
|
+
parentFund?: Maybe<InvestmentFund>;
|
|
6789
6833
|
/** The relevance score of the investmentfund. */
|
|
6790
6834
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
6791
6835
|
/** The state of the investmentfund (i.e. created, enabled). */
|
|
6792
6836
|
state: EntityState;
|
|
6837
|
+
/** The target fund size. */
|
|
6838
|
+
targetSize?: Maybe<Scalars['Decimal']['output']>;
|
|
6839
|
+
/** The currency for the target fund size. */
|
|
6840
|
+
targetSizeCurrency?: Maybe<Scalars['String']['output']>;
|
|
6793
6841
|
/** The JSON-LD value of the investmentfund. */
|
|
6794
6842
|
thing?: Maybe<Scalars['String']['output']>;
|
|
6795
6843
|
/** The investmentfund URI. */
|
|
6796
6844
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
6845
|
+
/** The fund vintage year. */
|
|
6846
|
+
vintage?: Maybe<Scalars['Int']['output']>;
|
|
6797
6847
|
/** The workflow associated with this investment fund. */
|
|
6798
6848
|
workflow?: Maybe<Workflow>;
|
|
6799
6849
|
};
|
|
@@ -6884,14 +6934,22 @@ export type InvestmentFundInput = {
|
|
|
6884
6934
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6885
6935
|
/** The investmentfund description. */
|
|
6886
6936
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6937
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6938
|
+
fundType?: InputMaybe<Scalars['String']['input']>;
|
|
6887
6939
|
/** The investmentfund external identifier. */
|
|
6888
6940
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
6889
6941
|
/** The investmentfund geo-location. */
|
|
6890
6942
|
location?: InputMaybe<PointInput>;
|
|
6891
6943
|
/** The name of the investmentfund. */
|
|
6892
6944
|
name: Scalars['String']['input'];
|
|
6945
|
+
/** The target fund size. */
|
|
6946
|
+
targetSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6947
|
+
/** The currency for the target fund size. */
|
|
6948
|
+
targetSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6893
6949
|
/** The investmentfund URI. */
|
|
6894
6950
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6951
|
+
/** The fund vintage year. */
|
|
6952
|
+
vintage?: InputMaybe<Scalars['Int']['input']>;
|
|
6895
6953
|
};
|
|
6896
6954
|
/** Represents investment fund query results. */
|
|
6897
6955
|
export type InvestmentFundResults = {
|
|
@@ -6911,6 +6969,8 @@ export type InvestmentFundUpdateInput = {
|
|
|
6911
6969
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6912
6970
|
/** The investmentfund description. */
|
|
6913
6971
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6972
|
+
/** The fund type (e.g., Venture, Growth, PE). */
|
|
6973
|
+
fundType?: InputMaybe<Scalars['String']['input']>;
|
|
6914
6974
|
/** The ID of the investmentfund to update. */
|
|
6915
6975
|
id: Scalars['ID']['input'];
|
|
6916
6976
|
/** The investmentfund external identifier. */
|
|
@@ -6919,8 +6979,14 @@ export type InvestmentFundUpdateInput = {
|
|
|
6919
6979
|
location?: InputMaybe<PointInput>;
|
|
6920
6980
|
/** The name of the investmentfund. */
|
|
6921
6981
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6982
|
+
/** The target fund size. */
|
|
6983
|
+
targetSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6984
|
+
/** The currency for the target fund size. */
|
|
6985
|
+
targetSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6922
6986
|
/** The investmentfund URI. */
|
|
6923
6987
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
6988
|
+
/** The fund vintage year. */
|
|
6989
|
+
vintage?: InputMaybe<Scalars['Int']['input']>;
|
|
6924
6990
|
};
|
|
6925
6991
|
/** Represents an investment. */
|
|
6926
6992
|
export type InvestmentInput = {
|
|
@@ -6930,16 +6996,46 @@ export type InvestmentInput = {
|
|
|
6930
6996
|
amountCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6931
6997
|
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6932
6998
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
6999
|
+
/** The current price per share. */
|
|
7000
|
+
currentPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6933
7001
|
/** The investment description. */
|
|
6934
7002
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7003
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
7004
|
+
discountPercent?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7005
|
+
/** The entry price per share. */
|
|
7006
|
+
entryPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6935
7007
|
/** The investment external identifier. */
|
|
6936
7008
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
7009
|
+
/** The date of the investment. */
|
|
7010
|
+
investmentDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
7011
|
+
/** The investor fund that made this investment. */
|
|
7012
|
+
investor?: InputMaybe<EntityReferenceInput>;
|
|
6937
7013
|
/** The investment geo-location. */
|
|
6938
7014
|
location?: InputMaybe<PointInput>;
|
|
6939
7015
|
/** The name of the investment. */
|
|
6940
7016
|
name: Scalars['String']['input'];
|
|
7017
|
+
/** The organization that received this investment (portfolio company). */
|
|
7018
|
+
organization?: InputMaybe<EntityReferenceInput>;
|
|
7019
|
+
/** The post-money valuation. */
|
|
7020
|
+
postValuation?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7021
|
+
/** The currency code for the post-money valuation. */
|
|
7022
|
+
postValuationCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7023
|
+
/** Whether pro-rata rights were obtained. */
|
|
7024
|
+
proRataRights?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7025
|
+
/** The total round size. */
|
|
7026
|
+
roundSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7027
|
+
/** The currency code for the round size. */
|
|
7028
|
+
roundSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7029
|
+
/** The number of shares owned. */
|
|
7030
|
+
sharesOwned?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7031
|
+
/** The investment stage. */
|
|
7032
|
+
stage?: InputMaybe<Scalars['String']['input']>;
|
|
7033
|
+
/** The investment status. */
|
|
7034
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6941
7035
|
/** The investment URI. */
|
|
6942
7036
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
7037
|
+
/** The investment vehicle type. */
|
|
7038
|
+
vehicle?: InputMaybe<Scalars['String']['input']>;
|
|
6943
7039
|
};
|
|
6944
7040
|
/** Represents investment query results. */
|
|
6945
7041
|
export type InvestmentResults = {
|
|
@@ -6957,18 +7053,48 @@ export type InvestmentUpdateInput = {
|
|
|
6957
7053
|
amountCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
6958
7054
|
/** The investment geo-boundary, as GeoJSON Feature with Polygon geometry. */
|
|
6959
7055
|
boundary?: InputMaybe<Scalars['String']['input']>;
|
|
7056
|
+
/** The current price per share. */
|
|
7057
|
+
currentPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6960
7058
|
/** The investment description. */
|
|
6961
7059
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7060
|
+
/** The discount percentage (for convertible notes/SAFEs). */
|
|
7061
|
+
discountPercent?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7062
|
+
/** The entry price per share. */
|
|
7063
|
+
entryPricePerShare?: InputMaybe<Scalars['Decimal']['input']>;
|
|
6962
7064
|
/** The ID of the investment to update. */
|
|
6963
7065
|
id: Scalars['ID']['input'];
|
|
6964
7066
|
/** The investment external identifier. */
|
|
6965
7067
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
7068
|
+
/** The date of the investment. */
|
|
7069
|
+
investmentDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
7070
|
+
/** The investor fund that made this investment. */
|
|
7071
|
+
investor?: InputMaybe<EntityReferenceInput>;
|
|
6966
7072
|
/** The investment geo-location. */
|
|
6967
7073
|
location?: InputMaybe<PointInput>;
|
|
6968
7074
|
/** The name of the investment. */
|
|
6969
7075
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7076
|
+
/** The organization that received this investment (portfolio company). */
|
|
7077
|
+
organization?: InputMaybe<EntityReferenceInput>;
|
|
7078
|
+
/** The post-money valuation. */
|
|
7079
|
+
postValuation?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7080
|
+
/** The currency code for the post-money valuation. */
|
|
7081
|
+
postValuationCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7082
|
+
/** Whether pro-rata rights were obtained. */
|
|
7083
|
+
proRataRights?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7084
|
+
/** The total round size. */
|
|
7085
|
+
roundSize?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7086
|
+
/** The currency code for the round size. */
|
|
7087
|
+
roundSizeCurrency?: InputMaybe<Scalars['String']['input']>;
|
|
7088
|
+
/** The number of shares owned. */
|
|
7089
|
+
sharesOwned?: InputMaybe<Scalars['Decimal']['input']>;
|
|
7090
|
+
/** The investment stage. */
|
|
7091
|
+
stage?: InputMaybe<Scalars['String']['input']>;
|
|
7092
|
+
/** The investment status. */
|
|
7093
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
6970
7094
|
/** The investment URI. */
|
|
6971
7095
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
|
7096
|
+
/** The investment vehicle type. */
|
|
7097
|
+
vehicle?: InputMaybe<Scalars['String']['input']>;
|
|
6972
7098
|
};
|
|
6973
7099
|
/** Represents issue feed properties. */
|
|
6974
7100
|
export type IssueFeedProperties = {
|
|
@@ -12236,10 +12362,14 @@ export type Organization = {
|
|
|
12236
12362
|
description?: Maybe<Scalars['String']['output']>;
|
|
12237
12363
|
/** The email address of the organization. */
|
|
12238
12364
|
email?: Maybe<Scalars['String']['output']>;
|
|
12365
|
+
/** The employee(s) of this organization. */
|
|
12366
|
+
employees?: Maybe<Array<Maybe<Person>>>;
|
|
12239
12367
|
/** The EPSG code for spatial reference of the organization. */
|
|
12240
12368
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
|
12241
12369
|
/** The feeds that discovered this organization. */
|
|
12242
12370
|
feeds?: Maybe<Array<Maybe<Feed>>>;
|
|
12371
|
+
/** The founder(s) of this organization. */
|
|
12372
|
+
founders?: Maybe<Array<Maybe<Person>>>;
|
|
12243
12373
|
/** The founding date of the organization. */
|
|
12244
12374
|
foundingDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12245
12375
|
/** The H3 index of the organization. */
|
|
@@ -12254,18 +12384,30 @@ export type Organization = {
|
|
|
12254
12384
|
investment?: Maybe<Scalars['Decimal']['output']>;
|
|
12255
12385
|
/** The currency of the investment into the organization. */
|
|
12256
12386
|
investmentCurrency?: Maybe<Scalars['String']['output']>;
|
|
12387
|
+
/** Investments received by this organization (as portfolio company). */
|
|
12388
|
+
investmentsReceived?: Maybe<Array<Maybe<Investment>>>;
|
|
12389
|
+
/** Investment funds that have invested in this organization. */
|
|
12390
|
+
investorFunds?: Maybe<Array<Maybe<InvestmentFund>>>;
|
|
12257
12391
|
/** The official legal name of the organization. */
|
|
12258
12392
|
legalName?: Maybe<Scalars['String']['output']>;
|
|
12259
12393
|
/** The extracted hyperlinks. */
|
|
12260
12394
|
links?: Maybe<Array<Maybe<LinkReference>>>;
|
|
12261
12395
|
/** The geo-location of the organization. */
|
|
12262
12396
|
location?: Maybe<Point>;
|
|
12397
|
+
/** The location(s) of this organization. */
|
|
12398
|
+
locations?: Maybe<Array<Maybe<Place>>>;
|
|
12399
|
+
/** Organization(s) this organization is a member of. */
|
|
12400
|
+
memberOf?: Maybe<Array<Maybe<Organization>>>;
|
|
12401
|
+
/** The member(s) of this organization. */
|
|
12402
|
+
members?: Maybe<Array<Maybe<Person>>>;
|
|
12263
12403
|
/** The modified date of the organization. */
|
|
12264
12404
|
modifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
12265
12405
|
/** The name of the organization. */
|
|
12266
12406
|
name: Scalars['String']['output'];
|
|
12267
12407
|
/** The owner of the organization. */
|
|
12268
12408
|
owner: Owner;
|
|
12409
|
+
/** The parent organization. */
|
|
12410
|
+
parentOrganization?: Maybe<Organization>;
|
|
12269
12411
|
/** The relevance score of the organization. */
|
|
12270
12412
|
relevance?: Maybe<Scalars['Float']['output']>;
|
|
12271
12413
|
/** The revenue of the organization. */
|
|
@@ -12274,6 +12416,8 @@ export type Organization = {
|
|
|
12274
12416
|
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
12275
12417
|
/** The state of the organization (i.e. created, enabled). */
|
|
12276
12418
|
state: EntityState;
|
|
12419
|
+
/** Sub-organization(s) of this organization. */
|
|
12420
|
+
subOrganizations?: Maybe<Array<Maybe<Organization>>>;
|
|
12277
12421
|
/** The telephone number of the organization. */
|
|
12278
12422
|
telephone?: Maybe<Scalars['String']['output']>;
|
|
12279
12423
|
/** The JSON-LD value of the organization. */
|
|
@@ -12600,10 +12744,14 @@ export type Person = {
|
|
|
12600
12744
|
alumniOf?: Maybe<Array<Maybe<Organization>>>;
|
|
12601
12745
|
/** The birth date of the person. */
|
|
12602
12746
|
birthDate?: Maybe<Scalars['Date']['output']>;
|
|
12747
|
+
/** The place where the person was born. */
|
|
12748
|
+
birthPlace?: Maybe<Place>;
|
|
12603
12749
|
/** The geo-boundary of the person, as GeoJSON Feature with Polygon geometry. */
|
|
12604
12750
|
boundary?: Maybe<Scalars['String']['output']>;
|
|
12605
12751
|
/** The creation date of the person. */
|
|
12606
12752
|
creationDate: Scalars['DateTime']['output'];
|
|
12753
|
+
/** The place where the person died. */
|
|
12754
|
+
deathPlace?: Maybe<Place>;
|
|
12607
12755
|
/** The person description. */
|
|
12608
12756
|
description?: Maybe<Scalars['String']['output']>;
|
|
12609
12757
|
/** The education of the person. */
|
|
@@ -12620,6 +12768,8 @@ export type Person = {
|
|
|
12620
12768
|
givenName?: Maybe<Scalars['String']['output']>;
|
|
12621
12769
|
/** The H3 index of the person. */
|
|
12622
12770
|
h3?: Maybe<H3>;
|
|
12771
|
+
/** The place(s) where the person lives. */
|
|
12772
|
+
homeLocation?: Maybe<Array<Maybe<Place>>>;
|
|
12623
12773
|
/** The ID of the person. */
|
|
12624
12774
|
id: Scalars['ID']['output'];
|
|
12625
12775
|
/** The person external identifier. */
|
|
@@ -12650,6 +12800,8 @@ export type Person = {
|
|
|
12650
12800
|
title?: Maybe<Scalars['String']['output']>;
|
|
12651
12801
|
/** The person URI. */
|
|
12652
12802
|
uri?: Maybe<Scalars['URL']['output']>;
|
|
12803
|
+
/** The place(s) where the person works. */
|
|
12804
|
+
workLocation?: Maybe<Array<Maybe<Place>>>;
|
|
12653
12805
|
/** The workflow associated with this person. */
|
|
12654
12806
|
workflow?: Maybe<Workflow>;
|
|
12655
12807
|
/** The organizations the person works for. */
|
|
@@ -25247,6 +25399,30 @@ export type GetEventQuery = {
|
|
|
25247
25399
|
id: string;
|
|
25248
25400
|
name: string;
|
|
25249
25401
|
} | null;
|
|
25402
|
+
location?: {
|
|
25403
|
+
__typename?: 'Point';
|
|
25404
|
+
latitude?: number | null;
|
|
25405
|
+
longitude?: number | null;
|
|
25406
|
+
} | null;
|
|
25407
|
+
h3?: {
|
|
25408
|
+
__typename?: 'H3';
|
|
25409
|
+
h3r0?: string | null;
|
|
25410
|
+
h3r1?: string | null;
|
|
25411
|
+
h3r2?: string | null;
|
|
25412
|
+
h3r3?: string | null;
|
|
25413
|
+
h3r4?: string | null;
|
|
25414
|
+
h3r5?: string | null;
|
|
25415
|
+
h3r6?: string | null;
|
|
25416
|
+
h3r7?: string | null;
|
|
25417
|
+
h3r8?: string | null;
|
|
25418
|
+
h3r9?: string | null;
|
|
25419
|
+
h3r10?: string | null;
|
|
25420
|
+
h3r11?: string | null;
|
|
25421
|
+
h3r12?: string | null;
|
|
25422
|
+
h3r13?: string | null;
|
|
25423
|
+
h3r14?: string | null;
|
|
25424
|
+
h3r15?: string | null;
|
|
25425
|
+
} | null;
|
|
25250
25426
|
address?: {
|
|
25251
25427
|
__typename?: 'Address';
|
|
25252
25428
|
streetAddress?: string | null;
|
|
@@ -25312,6 +25488,30 @@ export type QueryEventsQuery = {
|
|
|
25312
25488
|
id: string;
|
|
25313
25489
|
name: string;
|
|
25314
25490
|
} | null;
|
|
25491
|
+
location?: {
|
|
25492
|
+
__typename?: 'Point';
|
|
25493
|
+
latitude?: number | null;
|
|
25494
|
+
longitude?: number | null;
|
|
25495
|
+
} | null;
|
|
25496
|
+
h3?: {
|
|
25497
|
+
__typename?: 'H3';
|
|
25498
|
+
h3r0?: string | null;
|
|
25499
|
+
h3r1?: string | null;
|
|
25500
|
+
h3r2?: string | null;
|
|
25501
|
+
h3r3?: string | null;
|
|
25502
|
+
h3r4?: string | null;
|
|
25503
|
+
h3r5?: string | null;
|
|
25504
|
+
h3r6?: string | null;
|
|
25505
|
+
h3r7?: string | null;
|
|
25506
|
+
h3r8?: string | null;
|
|
25507
|
+
h3r9?: string | null;
|
|
25508
|
+
h3r10?: string | null;
|
|
25509
|
+
h3r11?: string | null;
|
|
25510
|
+
h3r12?: string | null;
|
|
25511
|
+
h3r13?: string | null;
|
|
25512
|
+
h3r14?: string | null;
|
|
25513
|
+
h3r15?: string | null;
|
|
25514
|
+
} | null;
|
|
25315
25515
|
address?: {
|
|
25316
25516
|
__typename?: 'Address';
|
|
25317
25517
|
streetAddress?: string | null;
|
|
@@ -26642,6 +26842,21 @@ export type GetInvestmentQuery = {
|
|
|
26642
26842
|
description?: string | null;
|
|
26643
26843
|
identifier?: string | null;
|
|
26644
26844
|
thing?: string | null;
|
|
26845
|
+
amount?: any | null;
|
|
26846
|
+
amountCurrency?: string | null;
|
|
26847
|
+
status?: string | null;
|
|
26848
|
+
stage?: string | null;
|
|
26849
|
+
investmentDate?: any | null;
|
|
26850
|
+
roundSize?: any | null;
|
|
26851
|
+
roundSizeCurrency?: string | null;
|
|
26852
|
+
postValuation?: any | null;
|
|
26853
|
+
postValuationCurrency?: string | null;
|
|
26854
|
+
sharesOwned?: any | null;
|
|
26855
|
+
vehicle?: string | null;
|
|
26856
|
+
entryPricePerShare?: any | null;
|
|
26857
|
+
currentPricePerShare?: any | null;
|
|
26858
|
+
discountPercent?: any | null;
|
|
26859
|
+
proRataRights?: boolean | null;
|
|
26645
26860
|
owner: {
|
|
26646
26861
|
__typename?: 'Owner';
|
|
26647
26862
|
id: string;
|
|
@@ -26662,6 +26877,38 @@ export type GetInvestmentQuery = {
|
|
|
26662
26877
|
id: string;
|
|
26663
26878
|
name: string;
|
|
26664
26879
|
} | null;
|
|
26880
|
+
location?: {
|
|
26881
|
+
__typename?: 'Point';
|
|
26882
|
+
latitude?: number | null;
|
|
26883
|
+
longitude?: number | null;
|
|
26884
|
+
} | null;
|
|
26885
|
+
h3?: {
|
|
26886
|
+
__typename?: 'H3';
|
|
26887
|
+
h3r0?: string | null;
|
|
26888
|
+
h3r1?: string | null;
|
|
26889
|
+
h3r2?: string | null;
|
|
26890
|
+
h3r3?: string | null;
|
|
26891
|
+
h3r4?: string | null;
|
|
26892
|
+
h3r5?: string | null;
|
|
26893
|
+
h3r6?: string | null;
|
|
26894
|
+
h3r7?: string | null;
|
|
26895
|
+
h3r8?: string | null;
|
|
26896
|
+
h3r9?: string | null;
|
|
26897
|
+
h3r10?: string | null;
|
|
26898
|
+
h3r11?: string | null;
|
|
26899
|
+
h3r12?: string | null;
|
|
26900
|
+
h3r13?: string | null;
|
|
26901
|
+
h3r14?: string | null;
|
|
26902
|
+
h3r15?: string | null;
|
|
26903
|
+
} | null;
|
|
26904
|
+
investor?: {
|
|
26905
|
+
__typename?: 'InvestmentFund';
|
|
26906
|
+
id: string;
|
|
26907
|
+
} | null;
|
|
26908
|
+
organization?: {
|
|
26909
|
+
__typename?: 'Organization';
|
|
26910
|
+
id: string;
|
|
26911
|
+
} | null;
|
|
26665
26912
|
} | null;
|
|
26666
26913
|
};
|
|
26667
26914
|
export type QueryInvestmentsQueryVariables = Exact<{
|
|
@@ -26685,6 +26932,11 @@ export type QueryInvestmentsQuery = {
|
|
|
26685
26932
|
description?: string | null;
|
|
26686
26933
|
identifier?: string | null;
|
|
26687
26934
|
thing?: string | null;
|
|
26935
|
+
amount?: any | null;
|
|
26936
|
+
amountCurrency?: string | null;
|
|
26937
|
+
status?: string | null;
|
|
26938
|
+
stage?: string | null;
|
|
26939
|
+
investmentDate?: any | null;
|
|
26688
26940
|
owner: {
|
|
26689
26941
|
__typename?: 'Owner';
|
|
26690
26942
|
id: string;
|
|
@@ -26705,6 +26957,30 @@ export type QueryInvestmentsQuery = {
|
|
|
26705
26957
|
id: string;
|
|
26706
26958
|
name: string;
|
|
26707
26959
|
} | null;
|
|
26960
|
+
location?: {
|
|
26961
|
+
__typename?: 'Point';
|
|
26962
|
+
latitude?: number | null;
|
|
26963
|
+
longitude?: number | null;
|
|
26964
|
+
} | null;
|
|
26965
|
+
h3?: {
|
|
26966
|
+
__typename?: 'H3';
|
|
26967
|
+
h3r0?: string | null;
|
|
26968
|
+
h3r1?: string | null;
|
|
26969
|
+
h3r2?: string | null;
|
|
26970
|
+
h3r3?: string | null;
|
|
26971
|
+
h3r4?: string | null;
|
|
26972
|
+
h3r5?: string | null;
|
|
26973
|
+
h3r6?: string | null;
|
|
26974
|
+
h3r7?: string | null;
|
|
26975
|
+
h3r8?: string | null;
|
|
26976
|
+
h3r9?: string | null;
|
|
26977
|
+
h3r10?: string | null;
|
|
26978
|
+
h3r11?: string | null;
|
|
26979
|
+
h3r12?: string | null;
|
|
26980
|
+
h3r13?: string | null;
|
|
26981
|
+
h3r14?: string | null;
|
|
26982
|
+
h3r15?: string | null;
|
|
26983
|
+
} | null;
|
|
26708
26984
|
} | null> | null;
|
|
26709
26985
|
} | null;
|
|
26710
26986
|
};
|
|
@@ -26795,6 +27071,12 @@ export type GetInvestmentFundQuery = {
|
|
|
26795
27071
|
description?: string | null;
|
|
26796
27072
|
identifier?: string | null;
|
|
26797
27073
|
thing?: string | null;
|
|
27074
|
+
amount?: any | null;
|
|
27075
|
+
amountCurrency?: string | null;
|
|
27076
|
+
fundType?: string | null;
|
|
27077
|
+
vintage?: number | null;
|
|
27078
|
+
targetSize?: any | null;
|
|
27079
|
+
targetSizeCurrency?: string | null;
|
|
26798
27080
|
owner: {
|
|
26799
27081
|
__typename?: 'Owner';
|
|
26800
27082
|
id: string;
|
|
@@ -26815,6 +27097,46 @@ export type GetInvestmentFundQuery = {
|
|
|
26815
27097
|
id: string;
|
|
26816
27098
|
name: string;
|
|
26817
27099
|
} | null;
|
|
27100
|
+
location?: {
|
|
27101
|
+
__typename?: 'Point';
|
|
27102
|
+
latitude?: number | null;
|
|
27103
|
+
longitude?: number | null;
|
|
27104
|
+
} | null;
|
|
27105
|
+
h3?: {
|
|
27106
|
+
__typename?: 'H3';
|
|
27107
|
+
h3r0?: string | null;
|
|
27108
|
+
h3r1?: string | null;
|
|
27109
|
+
h3r2?: string | null;
|
|
27110
|
+
h3r3?: string | null;
|
|
27111
|
+
h3r4?: string | null;
|
|
27112
|
+
h3r5?: string | null;
|
|
27113
|
+
h3r6?: string | null;
|
|
27114
|
+
h3r7?: string | null;
|
|
27115
|
+
h3r8?: string | null;
|
|
27116
|
+
h3r9?: string | null;
|
|
27117
|
+
h3r10?: string | null;
|
|
27118
|
+
h3r11?: string | null;
|
|
27119
|
+
h3r12?: string | null;
|
|
27120
|
+
h3r13?: string | null;
|
|
27121
|
+
h3r14?: string | null;
|
|
27122
|
+
h3r15?: string | null;
|
|
27123
|
+
} | null;
|
|
27124
|
+
organizations?: Array<{
|
|
27125
|
+
__typename?: 'Organization';
|
|
27126
|
+
id: string;
|
|
27127
|
+
} | null> | null;
|
|
27128
|
+
investments?: Array<{
|
|
27129
|
+
__typename?: 'Investment';
|
|
27130
|
+
id: string;
|
|
27131
|
+
} | null> | null;
|
|
27132
|
+
parentFund?: {
|
|
27133
|
+
__typename?: 'InvestmentFund';
|
|
27134
|
+
id: string;
|
|
27135
|
+
} | null;
|
|
27136
|
+
childFunds?: Array<{
|
|
27137
|
+
__typename?: 'InvestmentFund';
|
|
27138
|
+
id: string;
|
|
27139
|
+
} | null> | null;
|
|
26818
27140
|
} | null;
|
|
26819
27141
|
};
|
|
26820
27142
|
export type QueryInvestmentFundsQueryVariables = Exact<{
|
|
@@ -26838,6 +27160,8 @@ export type QueryInvestmentFundsQuery = {
|
|
|
26838
27160
|
description?: string | null;
|
|
26839
27161
|
identifier?: string | null;
|
|
26840
27162
|
thing?: string | null;
|
|
27163
|
+
amount?: any | null;
|
|
27164
|
+
amountCurrency?: string | null;
|
|
26841
27165
|
owner: {
|
|
26842
27166
|
__typename?: 'Owner';
|
|
26843
27167
|
id: string;
|
|
@@ -26858,6 +27182,30 @@ export type QueryInvestmentFundsQuery = {
|
|
|
26858
27182
|
id: string;
|
|
26859
27183
|
name: string;
|
|
26860
27184
|
} | null;
|
|
27185
|
+
location?: {
|
|
27186
|
+
__typename?: 'Point';
|
|
27187
|
+
latitude?: number | null;
|
|
27188
|
+
longitude?: number | null;
|
|
27189
|
+
} | null;
|
|
27190
|
+
h3?: {
|
|
27191
|
+
__typename?: 'H3';
|
|
27192
|
+
h3r0?: string | null;
|
|
27193
|
+
h3r1?: string | null;
|
|
27194
|
+
h3r2?: string | null;
|
|
27195
|
+
h3r3?: string | null;
|
|
27196
|
+
h3r4?: string | null;
|
|
27197
|
+
h3r5?: string | null;
|
|
27198
|
+
h3r6?: string | null;
|
|
27199
|
+
h3r7?: string | null;
|
|
27200
|
+
h3r8?: string | null;
|
|
27201
|
+
h3r9?: string | null;
|
|
27202
|
+
h3r10?: string | null;
|
|
27203
|
+
h3r11?: string | null;
|
|
27204
|
+
h3r12?: string | null;
|
|
27205
|
+
h3r13?: string | null;
|
|
27206
|
+
h3r14?: string | null;
|
|
27207
|
+
h3r15?: string | null;
|
|
27208
|
+
} | null;
|
|
26861
27209
|
} | null> | null;
|
|
26862
27210
|
} | null;
|
|
26863
27211
|
};
|
|
@@ -27090,6 +27438,30 @@ export type GetMedicalConditionQuery = {
|
|
|
27090
27438
|
id: string;
|
|
27091
27439
|
name: string;
|
|
27092
27440
|
} | null;
|
|
27441
|
+
location?: {
|
|
27442
|
+
__typename?: 'Point';
|
|
27443
|
+
latitude?: number | null;
|
|
27444
|
+
longitude?: number | null;
|
|
27445
|
+
} | null;
|
|
27446
|
+
h3?: {
|
|
27447
|
+
__typename?: 'H3';
|
|
27448
|
+
h3r0?: string | null;
|
|
27449
|
+
h3r1?: string | null;
|
|
27450
|
+
h3r2?: string | null;
|
|
27451
|
+
h3r3?: string | null;
|
|
27452
|
+
h3r4?: string | null;
|
|
27453
|
+
h3r5?: string | null;
|
|
27454
|
+
h3r6?: string | null;
|
|
27455
|
+
h3r7?: string | null;
|
|
27456
|
+
h3r8?: string | null;
|
|
27457
|
+
h3r9?: string | null;
|
|
27458
|
+
h3r10?: string | null;
|
|
27459
|
+
h3r11?: string | null;
|
|
27460
|
+
h3r12?: string | null;
|
|
27461
|
+
h3r13?: string | null;
|
|
27462
|
+
h3r14?: string | null;
|
|
27463
|
+
h3r15?: string | null;
|
|
27464
|
+
} | null;
|
|
27093
27465
|
} | null;
|
|
27094
27466
|
};
|
|
27095
27467
|
export type QueryMedicalConditionsQueryVariables = Exact<{
|
|
@@ -27133,6 +27505,30 @@ export type QueryMedicalConditionsQuery = {
|
|
|
27133
27505
|
id: string;
|
|
27134
27506
|
name: string;
|
|
27135
27507
|
} | null;
|
|
27508
|
+
location?: {
|
|
27509
|
+
__typename?: 'Point';
|
|
27510
|
+
latitude?: number | null;
|
|
27511
|
+
longitude?: number | null;
|
|
27512
|
+
} | null;
|
|
27513
|
+
h3?: {
|
|
27514
|
+
__typename?: 'H3';
|
|
27515
|
+
h3r0?: string | null;
|
|
27516
|
+
h3r1?: string | null;
|
|
27517
|
+
h3r2?: string | null;
|
|
27518
|
+
h3r3?: string | null;
|
|
27519
|
+
h3r4?: string | null;
|
|
27520
|
+
h3r5?: string | null;
|
|
27521
|
+
h3r6?: string | null;
|
|
27522
|
+
h3r7?: string | null;
|
|
27523
|
+
h3r8?: string | null;
|
|
27524
|
+
h3r9?: string | null;
|
|
27525
|
+
h3r10?: string | null;
|
|
27526
|
+
h3r11?: string | null;
|
|
27527
|
+
h3r12?: string | null;
|
|
27528
|
+
h3r13?: string | null;
|
|
27529
|
+
h3r14?: string | null;
|
|
27530
|
+
h3r15?: string | null;
|
|
27531
|
+
} | null;
|
|
27136
27532
|
} | null> | null;
|
|
27137
27533
|
} | null;
|
|
27138
27534
|
};
|
|
@@ -27243,6 +27639,30 @@ export type GetMedicalContraindicationQuery = {
|
|
|
27243
27639
|
id: string;
|
|
27244
27640
|
name: string;
|
|
27245
27641
|
} | null;
|
|
27642
|
+
location?: {
|
|
27643
|
+
__typename?: 'Point';
|
|
27644
|
+
latitude?: number | null;
|
|
27645
|
+
longitude?: number | null;
|
|
27646
|
+
} | null;
|
|
27647
|
+
h3?: {
|
|
27648
|
+
__typename?: 'H3';
|
|
27649
|
+
h3r0?: string | null;
|
|
27650
|
+
h3r1?: string | null;
|
|
27651
|
+
h3r2?: string | null;
|
|
27652
|
+
h3r3?: string | null;
|
|
27653
|
+
h3r4?: string | null;
|
|
27654
|
+
h3r5?: string | null;
|
|
27655
|
+
h3r6?: string | null;
|
|
27656
|
+
h3r7?: string | null;
|
|
27657
|
+
h3r8?: string | null;
|
|
27658
|
+
h3r9?: string | null;
|
|
27659
|
+
h3r10?: string | null;
|
|
27660
|
+
h3r11?: string | null;
|
|
27661
|
+
h3r12?: string | null;
|
|
27662
|
+
h3r13?: string | null;
|
|
27663
|
+
h3r14?: string | null;
|
|
27664
|
+
h3r15?: string | null;
|
|
27665
|
+
} | null;
|
|
27246
27666
|
} | null;
|
|
27247
27667
|
};
|
|
27248
27668
|
export type QueryMedicalContraindicationsQueryVariables = Exact<{
|
|
@@ -27286,22 +27706,46 @@ export type QueryMedicalContraindicationsQuery = {
|
|
|
27286
27706
|
id: string;
|
|
27287
27707
|
name: string;
|
|
27288
27708
|
} | null;
|
|
27289
|
-
|
|
27290
|
-
|
|
27291
|
-
|
|
27292
|
-
|
|
27293
|
-
|
|
27294
|
-
|
|
27295
|
-
|
|
27296
|
-
|
|
27297
|
-
|
|
27298
|
-
|
|
27299
|
-
|
|
27300
|
-
|
|
27301
|
-
|
|
27302
|
-
|
|
27303
|
-
|
|
27304
|
-
|
|
27709
|
+
location?: {
|
|
27710
|
+
__typename?: 'Point';
|
|
27711
|
+
latitude?: number | null;
|
|
27712
|
+
longitude?: number | null;
|
|
27713
|
+
} | null;
|
|
27714
|
+
h3?: {
|
|
27715
|
+
__typename?: 'H3';
|
|
27716
|
+
h3r0?: string | null;
|
|
27717
|
+
h3r1?: string | null;
|
|
27718
|
+
h3r2?: string | null;
|
|
27719
|
+
h3r3?: string | null;
|
|
27720
|
+
h3r4?: string | null;
|
|
27721
|
+
h3r5?: string | null;
|
|
27722
|
+
h3r6?: string | null;
|
|
27723
|
+
h3r7?: string | null;
|
|
27724
|
+
h3r8?: string | null;
|
|
27725
|
+
h3r9?: string | null;
|
|
27726
|
+
h3r10?: string | null;
|
|
27727
|
+
h3r11?: string | null;
|
|
27728
|
+
h3r12?: string | null;
|
|
27729
|
+
h3r13?: string | null;
|
|
27730
|
+
h3r14?: string | null;
|
|
27731
|
+
h3r15?: string | null;
|
|
27732
|
+
} | null;
|
|
27733
|
+
} | null> | null;
|
|
27734
|
+
} | null;
|
|
27735
|
+
};
|
|
27736
|
+
export type UpdateMedicalContraindicationMutationVariables = Exact<{
|
|
27737
|
+
medicalContraindication: MedicalContraindicationUpdateInput;
|
|
27738
|
+
}>;
|
|
27739
|
+
export type UpdateMedicalContraindicationMutation = {
|
|
27740
|
+
__typename?: 'Mutation';
|
|
27741
|
+
updateMedicalContraindication?: {
|
|
27742
|
+
__typename?: 'MedicalContraindication';
|
|
27743
|
+
id: string;
|
|
27744
|
+
name: string;
|
|
27745
|
+
} | null;
|
|
27746
|
+
};
|
|
27747
|
+
export type CountMedicalDevicesQueryVariables = Exact<{
|
|
27748
|
+
filter?: InputMaybe<MedicalDeviceFilter>;
|
|
27305
27749
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27306
27750
|
}>;
|
|
27307
27751
|
export type CountMedicalDevicesQuery = {
|
|
@@ -27396,6 +27840,30 @@ export type GetMedicalDeviceQuery = {
|
|
|
27396
27840
|
id: string;
|
|
27397
27841
|
name: string;
|
|
27398
27842
|
} | null;
|
|
27843
|
+
location?: {
|
|
27844
|
+
__typename?: 'Point';
|
|
27845
|
+
latitude?: number | null;
|
|
27846
|
+
longitude?: number | null;
|
|
27847
|
+
} | null;
|
|
27848
|
+
h3?: {
|
|
27849
|
+
__typename?: 'H3';
|
|
27850
|
+
h3r0?: string | null;
|
|
27851
|
+
h3r1?: string | null;
|
|
27852
|
+
h3r2?: string | null;
|
|
27853
|
+
h3r3?: string | null;
|
|
27854
|
+
h3r4?: string | null;
|
|
27855
|
+
h3r5?: string | null;
|
|
27856
|
+
h3r6?: string | null;
|
|
27857
|
+
h3r7?: string | null;
|
|
27858
|
+
h3r8?: string | null;
|
|
27859
|
+
h3r9?: string | null;
|
|
27860
|
+
h3r10?: string | null;
|
|
27861
|
+
h3r11?: string | null;
|
|
27862
|
+
h3r12?: string | null;
|
|
27863
|
+
h3r13?: string | null;
|
|
27864
|
+
h3r14?: string | null;
|
|
27865
|
+
h3r15?: string | null;
|
|
27866
|
+
} | null;
|
|
27399
27867
|
} | null;
|
|
27400
27868
|
};
|
|
27401
27869
|
export type QueryMedicalDevicesQueryVariables = Exact<{
|
|
@@ -27439,6 +27907,30 @@ export type QueryMedicalDevicesQuery = {
|
|
|
27439
27907
|
id: string;
|
|
27440
27908
|
name: string;
|
|
27441
27909
|
} | null;
|
|
27910
|
+
location?: {
|
|
27911
|
+
__typename?: 'Point';
|
|
27912
|
+
latitude?: number | null;
|
|
27913
|
+
longitude?: number | null;
|
|
27914
|
+
} | null;
|
|
27915
|
+
h3?: {
|
|
27916
|
+
__typename?: 'H3';
|
|
27917
|
+
h3r0?: string | null;
|
|
27918
|
+
h3r1?: string | null;
|
|
27919
|
+
h3r2?: string | null;
|
|
27920
|
+
h3r3?: string | null;
|
|
27921
|
+
h3r4?: string | null;
|
|
27922
|
+
h3r5?: string | null;
|
|
27923
|
+
h3r6?: string | null;
|
|
27924
|
+
h3r7?: string | null;
|
|
27925
|
+
h3r8?: string | null;
|
|
27926
|
+
h3r9?: string | null;
|
|
27927
|
+
h3r10?: string | null;
|
|
27928
|
+
h3r11?: string | null;
|
|
27929
|
+
h3r12?: string | null;
|
|
27930
|
+
h3r13?: string | null;
|
|
27931
|
+
h3r14?: string | null;
|
|
27932
|
+
h3r15?: string | null;
|
|
27933
|
+
} | null;
|
|
27442
27934
|
} | null> | null;
|
|
27443
27935
|
} | null;
|
|
27444
27936
|
};
|
|
@@ -27549,6 +28041,30 @@ export type GetMedicalDrugQuery = {
|
|
|
27549
28041
|
id: string;
|
|
27550
28042
|
name: string;
|
|
27551
28043
|
} | null;
|
|
28044
|
+
location?: {
|
|
28045
|
+
__typename?: 'Point';
|
|
28046
|
+
latitude?: number | null;
|
|
28047
|
+
longitude?: number | null;
|
|
28048
|
+
} | null;
|
|
28049
|
+
h3?: {
|
|
28050
|
+
__typename?: 'H3';
|
|
28051
|
+
h3r0?: string | null;
|
|
28052
|
+
h3r1?: string | null;
|
|
28053
|
+
h3r2?: string | null;
|
|
28054
|
+
h3r3?: string | null;
|
|
28055
|
+
h3r4?: string | null;
|
|
28056
|
+
h3r5?: string | null;
|
|
28057
|
+
h3r6?: string | null;
|
|
28058
|
+
h3r7?: string | null;
|
|
28059
|
+
h3r8?: string | null;
|
|
28060
|
+
h3r9?: string | null;
|
|
28061
|
+
h3r10?: string | null;
|
|
28062
|
+
h3r11?: string | null;
|
|
28063
|
+
h3r12?: string | null;
|
|
28064
|
+
h3r13?: string | null;
|
|
28065
|
+
h3r14?: string | null;
|
|
28066
|
+
h3r15?: string | null;
|
|
28067
|
+
} | null;
|
|
27552
28068
|
} | null;
|
|
27553
28069
|
};
|
|
27554
28070
|
export type QueryMedicalDrugsQueryVariables = Exact<{
|
|
@@ -27592,6 +28108,30 @@ export type QueryMedicalDrugsQuery = {
|
|
|
27592
28108
|
id: string;
|
|
27593
28109
|
name: string;
|
|
27594
28110
|
} | null;
|
|
28111
|
+
location?: {
|
|
28112
|
+
__typename?: 'Point';
|
|
28113
|
+
latitude?: number | null;
|
|
28114
|
+
longitude?: number | null;
|
|
28115
|
+
} | null;
|
|
28116
|
+
h3?: {
|
|
28117
|
+
__typename?: 'H3';
|
|
28118
|
+
h3r0?: string | null;
|
|
28119
|
+
h3r1?: string | null;
|
|
28120
|
+
h3r2?: string | null;
|
|
28121
|
+
h3r3?: string | null;
|
|
28122
|
+
h3r4?: string | null;
|
|
28123
|
+
h3r5?: string | null;
|
|
28124
|
+
h3r6?: string | null;
|
|
28125
|
+
h3r7?: string | null;
|
|
28126
|
+
h3r8?: string | null;
|
|
28127
|
+
h3r9?: string | null;
|
|
28128
|
+
h3r10?: string | null;
|
|
28129
|
+
h3r11?: string | null;
|
|
28130
|
+
h3r12?: string | null;
|
|
28131
|
+
h3r13?: string | null;
|
|
28132
|
+
h3r14?: string | null;
|
|
28133
|
+
h3r15?: string | null;
|
|
28134
|
+
} | null;
|
|
27595
28135
|
} | null> | null;
|
|
27596
28136
|
} | null;
|
|
27597
28137
|
};
|
|
@@ -27702,6 +28242,30 @@ export type GetMedicalDrugClassQuery = {
|
|
|
27702
28242
|
id: string;
|
|
27703
28243
|
name: string;
|
|
27704
28244
|
} | null;
|
|
28245
|
+
location?: {
|
|
28246
|
+
__typename?: 'Point';
|
|
28247
|
+
latitude?: number | null;
|
|
28248
|
+
longitude?: number | null;
|
|
28249
|
+
} | null;
|
|
28250
|
+
h3?: {
|
|
28251
|
+
__typename?: 'H3';
|
|
28252
|
+
h3r0?: string | null;
|
|
28253
|
+
h3r1?: string | null;
|
|
28254
|
+
h3r2?: string | null;
|
|
28255
|
+
h3r3?: string | null;
|
|
28256
|
+
h3r4?: string | null;
|
|
28257
|
+
h3r5?: string | null;
|
|
28258
|
+
h3r6?: string | null;
|
|
28259
|
+
h3r7?: string | null;
|
|
28260
|
+
h3r8?: string | null;
|
|
28261
|
+
h3r9?: string | null;
|
|
28262
|
+
h3r10?: string | null;
|
|
28263
|
+
h3r11?: string | null;
|
|
28264
|
+
h3r12?: string | null;
|
|
28265
|
+
h3r13?: string | null;
|
|
28266
|
+
h3r14?: string | null;
|
|
28267
|
+
h3r15?: string | null;
|
|
28268
|
+
} | null;
|
|
27705
28269
|
} | null;
|
|
27706
28270
|
};
|
|
27707
28271
|
export type QueryMedicalDrugClassesQueryVariables = Exact<{
|
|
@@ -27745,6 +28309,30 @@ export type QueryMedicalDrugClassesQuery = {
|
|
|
27745
28309
|
id: string;
|
|
27746
28310
|
name: string;
|
|
27747
28311
|
} | null;
|
|
28312
|
+
location?: {
|
|
28313
|
+
__typename?: 'Point';
|
|
28314
|
+
latitude?: number | null;
|
|
28315
|
+
longitude?: number | null;
|
|
28316
|
+
} | null;
|
|
28317
|
+
h3?: {
|
|
28318
|
+
__typename?: 'H3';
|
|
28319
|
+
h3r0?: string | null;
|
|
28320
|
+
h3r1?: string | null;
|
|
28321
|
+
h3r2?: string | null;
|
|
28322
|
+
h3r3?: string | null;
|
|
28323
|
+
h3r4?: string | null;
|
|
28324
|
+
h3r5?: string | null;
|
|
28325
|
+
h3r6?: string | null;
|
|
28326
|
+
h3r7?: string | null;
|
|
28327
|
+
h3r8?: string | null;
|
|
28328
|
+
h3r9?: string | null;
|
|
28329
|
+
h3r10?: string | null;
|
|
28330
|
+
h3r11?: string | null;
|
|
28331
|
+
h3r12?: string | null;
|
|
28332
|
+
h3r13?: string | null;
|
|
28333
|
+
h3r14?: string | null;
|
|
28334
|
+
h3r15?: string | null;
|
|
28335
|
+
} | null;
|
|
27748
28336
|
} | null> | null;
|
|
27749
28337
|
} | null;
|
|
27750
28338
|
};
|
|
@@ -27855,6 +28443,30 @@ export type GetMedicalGuidelineQuery = {
|
|
|
27855
28443
|
id: string;
|
|
27856
28444
|
name: string;
|
|
27857
28445
|
} | null;
|
|
28446
|
+
location?: {
|
|
28447
|
+
__typename?: 'Point';
|
|
28448
|
+
latitude?: number | null;
|
|
28449
|
+
longitude?: number | null;
|
|
28450
|
+
} | null;
|
|
28451
|
+
h3?: {
|
|
28452
|
+
__typename?: 'H3';
|
|
28453
|
+
h3r0?: string | null;
|
|
28454
|
+
h3r1?: string | null;
|
|
28455
|
+
h3r2?: string | null;
|
|
28456
|
+
h3r3?: string | null;
|
|
28457
|
+
h3r4?: string | null;
|
|
28458
|
+
h3r5?: string | null;
|
|
28459
|
+
h3r6?: string | null;
|
|
28460
|
+
h3r7?: string | null;
|
|
28461
|
+
h3r8?: string | null;
|
|
28462
|
+
h3r9?: string | null;
|
|
28463
|
+
h3r10?: string | null;
|
|
28464
|
+
h3r11?: string | null;
|
|
28465
|
+
h3r12?: string | null;
|
|
28466
|
+
h3r13?: string | null;
|
|
28467
|
+
h3r14?: string | null;
|
|
28468
|
+
h3r15?: string | null;
|
|
28469
|
+
} | null;
|
|
27858
28470
|
} | null;
|
|
27859
28471
|
};
|
|
27860
28472
|
export type QueryMedicalGuidelinesQueryVariables = Exact<{
|
|
@@ -27898,6 +28510,30 @@ export type QueryMedicalGuidelinesQuery = {
|
|
|
27898
28510
|
id: string;
|
|
27899
28511
|
name: string;
|
|
27900
28512
|
} | null;
|
|
28513
|
+
location?: {
|
|
28514
|
+
__typename?: 'Point';
|
|
28515
|
+
latitude?: number | null;
|
|
28516
|
+
longitude?: number | null;
|
|
28517
|
+
} | null;
|
|
28518
|
+
h3?: {
|
|
28519
|
+
__typename?: 'H3';
|
|
28520
|
+
h3r0?: string | null;
|
|
28521
|
+
h3r1?: string | null;
|
|
28522
|
+
h3r2?: string | null;
|
|
28523
|
+
h3r3?: string | null;
|
|
28524
|
+
h3r4?: string | null;
|
|
28525
|
+
h3r5?: string | null;
|
|
28526
|
+
h3r6?: string | null;
|
|
28527
|
+
h3r7?: string | null;
|
|
28528
|
+
h3r8?: string | null;
|
|
28529
|
+
h3r9?: string | null;
|
|
28530
|
+
h3r10?: string | null;
|
|
28531
|
+
h3r11?: string | null;
|
|
28532
|
+
h3r12?: string | null;
|
|
28533
|
+
h3r13?: string | null;
|
|
28534
|
+
h3r14?: string | null;
|
|
28535
|
+
h3r15?: string | null;
|
|
28536
|
+
} | null;
|
|
27901
28537
|
} | null> | null;
|
|
27902
28538
|
} | null;
|
|
27903
28539
|
};
|
|
@@ -28008,6 +28644,30 @@ export type GetMedicalIndicationQuery = {
|
|
|
28008
28644
|
id: string;
|
|
28009
28645
|
name: string;
|
|
28010
28646
|
} | null;
|
|
28647
|
+
location?: {
|
|
28648
|
+
__typename?: 'Point';
|
|
28649
|
+
latitude?: number | null;
|
|
28650
|
+
longitude?: number | null;
|
|
28651
|
+
} | null;
|
|
28652
|
+
h3?: {
|
|
28653
|
+
__typename?: 'H3';
|
|
28654
|
+
h3r0?: string | null;
|
|
28655
|
+
h3r1?: string | null;
|
|
28656
|
+
h3r2?: string | null;
|
|
28657
|
+
h3r3?: string | null;
|
|
28658
|
+
h3r4?: string | null;
|
|
28659
|
+
h3r5?: string | null;
|
|
28660
|
+
h3r6?: string | null;
|
|
28661
|
+
h3r7?: string | null;
|
|
28662
|
+
h3r8?: string | null;
|
|
28663
|
+
h3r9?: string | null;
|
|
28664
|
+
h3r10?: string | null;
|
|
28665
|
+
h3r11?: string | null;
|
|
28666
|
+
h3r12?: string | null;
|
|
28667
|
+
h3r13?: string | null;
|
|
28668
|
+
h3r14?: string | null;
|
|
28669
|
+
h3r15?: string | null;
|
|
28670
|
+
} | null;
|
|
28011
28671
|
} | null;
|
|
28012
28672
|
};
|
|
28013
28673
|
export type QueryMedicalIndicationsQueryVariables = Exact<{
|
|
@@ -28051,6 +28711,30 @@ export type QueryMedicalIndicationsQuery = {
|
|
|
28051
28711
|
id: string;
|
|
28052
28712
|
name: string;
|
|
28053
28713
|
} | null;
|
|
28714
|
+
location?: {
|
|
28715
|
+
__typename?: 'Point';
|
|
28716
|
+
latitude?: number | null;
|
|
28717
|
+
longitude?: number | null;
|
|
28718
|
+
} | null;
|
|
28719
|
+
h3?: {
|
|
28720
|
+
__typename?: 'H3';
|
|
28721
|
+
h3r0?: string | null;
|
|
28722
|
+
h3r1?: string | null;
|
|
28723
|
+
h3r2?: string | null;
|
|
28724
|
+
h3r3?: string | null;
|
|
28725
|
+
h3r4?: string | null;
|
|
28726
|
+
h3r5?: string | null;
|
|
28727
|
+
h3r6?: string | null;
|
|
28728
|
+
h3r7?: string | null;
|
|
28729
|
+
h3r8?: string | null;
|
|
28730
|
+
h3r9?: string | null;
|
|
28731
|
+
h3r10?: string | null;
|
|
28732
|
+
h3r11?: string | null;
|
|
28733
|
+
h3r12?: string | null;
|
|
28734
|
+
h3r13?: string | null;
|
|
28735
|
+
h3r14?: string | null;
|
|
28736
|
+
h3r15?: string | null;
|
|
28737
|
+
} | null;
|
|
28054
28738
|
} | null> | null;
|
|
28055
28739
|
} | null;
|
|
28056
28740
|
};
|
|
@@ -28161,6 +28845,30 @@ export type GetMedicalProcedureQuery = {
|
|
|
28161
28845
|
id: string;
|
|
28162
28846
|
name: string;
|
|
28163
28847
|
} | null;
|
|
28848
|
+
location?: {
|
|
28849
|
+
__typename?: 'Point';
|
|
28850
|
+
latitude?: number | null;
|
|
28851
|
+
longitude?: number | null;
|
|
28852
|
+
} | null;
|
|
28853
|
+
h3?: {
|
|
28854
|
+
__typename?: 'H3';
|
|
28855
|
+
h3r0?: string | null;
|
|
28856
|
+
h3r1?: string | null;
|
|
28857
|
+
h3r2?: string | null;
|
|
28858
|
+
h3r3?: string | null;
|
|
28859
|
+
h3r4?: string | null;
|
|
28860
|
+
h3r5?: string | null;
|
|
28861
|
+
h3r6?: string | null;
|
|
28862
|
+
h3r7?: string | null;
|
|
28863
|
+
h3r8?: string | null;
|
|
28864
|
+
h3r9?: string | null;
|
|
28865
|
+
h3r10?: string | null;
|
|
28866
|
+
h3r11?: string | null;
|
|
28867
|
+
h3r12?: string | null;
|
|
28868
|
+
h3r13?: string | null;
|
|
28869
|
+
h3r14?: string | null;
|
|
28870
|
+
h3r15?: string | null;
|
|
28871
|
+
} | null;
|
|
28164
28872
|
} | null;
|
|
28165
28873
|
};
|
|
28166
28874
|
export type QueryMedicalProceduresQueryVariables = Exact<{
|
|
@@ -28204,6 +28912,30 @@ export type QueryMedicalProceduresQuery = {
|
|
|
28204
28912
|
id: string;
|
|
28205
28913
|
name: string;
|
|
28206
28914
|
} | null;
|
|
28915
|
+
location?: {
|
|
28916
|
+
__typename?: 'Point';
|
|
28917
|
+
latitude?: number | null;
|
|
28918
|
+
longitude?: number | null;
|
|
28919
|
+
} | null;
|
|
28920
|
+
h3?: {
|
|
28921
|
+
__typename?: 'H3';
|
|
28922
|
+
h3r0?: string | null;
|
|
28923
|
+
h3r1?: string | null;
|
|
28924
|
+
h3r2?: string | null;
|
|
28925
|
+
h3r3?: string | null;
|
|
28926
|
+
h3r4?: string | null;
|
|
28927
|
+
h3r5?: string | null;
|
|
28928
|
+
h3r6?: string | null;
|
|
28929
|
+
h3r7?: string | null;
|
|
28930
|
+
h3r8?: string | null;
|
|
28931
|
+
h3r9?: string | null;
|
|
28932
|
+
h3r10?: string | null;
|
|
28933
|
+
h3r11?: string | null;
|
|
28934
|
+
h3r12?: string | null;
|
|
28935
|
+
h3r13?: string | null;
|
|
28936
|
+
h3r14?: string | null;
|
|
28937
|
+
h3r15?: string | null;
|
|
28938
|
+
} | null;
|
|
28207
28939
|
} | null> | null;
|
|
28208
28940
|
} | null;
|
|
28209
28941
|
};
|
|
@@ -28314,6 +29046,30 @@ export type GetMedicalStudyQuery = {
|
|
|
28314
29046
|
id: string;
|
|
28315
29047
|
name: string;
|
|
28316
29048
|
} | null;
|
|
29049
|
+
location?: {
|
|
29050
|
+
__typename?: 'Point';
|
|
29051
|
+
latitude?: number | null;
|
|
29052
|
+
longitude?: number | null;
|
|
29053
|
+
} | null;
|
|
29054
|
+
h3?: {
|
|
29055
|
+
__typename?: 'H3';
|
|
29056
|
+
h3r0?: string | null;
|
|
29057
|
+
h3r1?: string | null;
|
|
29058
|
+
h3r2?: string | null;
|
|
29059
|
+
h3r3?: string | null;
|
|
29060
|
+
h3r4?: string | null;
|
|
29061
|
+
h3r5?: string | null;
|
|
29062
|
+
h3r6?: string | null;
|
|
29063
|
+
h3r7?: string | null;
|
|
29064
|
+
h3r8?: string | null;
|
|
29065
|
+
h3r9?: string | null;
|
|
29066
|
+
h3r10?: string | null;
|
|
29067
|
+
h3r11?: string | null;
|
|
29068
|
+
h3r12?: string | null;
|
|
29069
|
+
h3r13?: string | null;
|
|
29070
|
+
h3r14?: string | null;
|
|
29071
|
+
h3r15?: string | null;
|
|
29072
|
+
} | null;
|
|
28317
29073
|
address?: {
|
|
28318
29074
|
__typename?: 'Address';
|
|
28319
29075
|
streetAddress?: string | null;
|
|
@@ -28365,6 +29121,30 @@ export type QueryMedicalStudiesQuery = {
|
|
|
28365
29121
|
id: string;
|
|
28366
29122
|
name: string;
|
|
28367
29123
|
} | null;
|
|
29124
|
+
location?: {
|
|
29125
|
+
__typename?: 'Point';
|
|
29126
|
+
latitude?: number | null;
|
|
29127
|
+
longitude?: number | null;
|
|
29128
|
+
} | null;
|
|
29129
|
+
h3?: {
|
|
29130
|
+
__typename?: 'H3';
|
|
29131
|
+
h3r0?: string | null;
|
|
29132
|
+
h3r1?: string | null;
|
|
29133
|
+
h3r2?: string | null;
|
|
29134
|
+
h3r3?: string | null;
|
|
29135
|
+
h3r4?: string | null;
|
|
29136
|
+
h3r5?: string | null;
|
|
29137
|
+
h3r6?: string | null;
|
|
29138
|
+
h3r7?: string | null;
|
|
29139
|
+
h3r8?: string | null;
|
|
29140
|
+
h3r9?: string | null;
|
|
29141
|
+
h3r10?: string | null;
|
|
29142
|
+
h3r11?: string | null;
|
|
29143
|
+
h3r12?: string | null;
|
|
29144
|
+
h3r13?: string | null;
|
|
29145
|
+
h3r14?: string | null;
|
|
29146
|
+
h3r15?: string | null;
|
|
29147
|
+
} | null;
|
|
28368
29148
|
address?: {
|
|
28369
29149
|
__typename?: 'Address';
|
|
28370
29150
|
streetAddress?: string | null;
|
|
@@ -28483,6 +29263,30 @@ export type GetMedicalTestQuery = {
|
|
|
28483
29263
|
id: string;
|
|
28484
29264
|
name: string;
|
|
28485
29265
|
} | null;
|
|
29266
|
+
location?: {
|
|
29267
|
+
__typename?: 'Point';
|
|
29268
|
+
latitude?: number | null;
|
|
29269
|
+
longitude?: number | null;
|
|
29270
|
+
} | null;
|
|
29271
|
+
h3?: {
|
|
29272
|
+
__typename?: 'H3';
|
|
29273
|
+
h3r0?: string | null;
|
|
29274
|
+
h3r1?: string | null;
|
|
29275
|
+
h3r2?: string | null;
|
|
29276
|
+
h3r3?: string | null;
|
|
29277
|
+
h3r4?: string | null;
|
|
29278
|
+
h3r5?: string | null;
|
|
29279
|
+
h3r6?: string | null;
|
|
29280
|
+
h3r7?: string | null;
|
|
29281
|
+
h3r8?: string | null;
|
|
29282
|
+
h3r9?: string | null;
|
|
29283
|
+
h3r10?: string | null;
|
|
29284
|
+
h3r11?: string | null;
|
|
29285
|
+
h3r12?: string | null;
|
|
29286
|
+
h3r13?: string | null;
|
|
29287
|
+
h3r14?: string | null;
|
|
29288
|
+
h3r15?: string | null;
|
|
29289
|
+
} | null;
|
|
28486
29290
|
} | null;
|
|
28487
29291
|
};
|
|
28488
29292
|
export type QueryMedicalTestsQueryVariables = Exact<{
|
|
@@ -28526,6 +29330,30 @@ export type QueryMedicalTestsQuery = {
|
|
|
28526
29330
|
id: string;
|
|
28527
29331
|
name: string;
|
|
28528
29332
|
} | null;
|
|
29333
|
+
location?: {
|
|
29334
|
+
__typename?: 'Point';
|
|
29335
|
+
latitude?: number | null;
|
|
29336
|
+
longitude?: number | null;
|
|
29337
|
+
} | null;
|
|
29338
|
+
h3?: {
|
|
29339
|
+
__typename?: 'H3';
|
|
29340
|
+
h3r0?: string | null;
|
|
29341
|
+
h3r1?: string | null;
|
|
29342
|
+
h3r2?: string | null;
|
|
29343
|
+
h3r3?: string | null;
|
|
29344
|
+
h3r4?: string | null;
|
|
29345
|
+
h3r5?: string | null;
|
|
29346
|
+
h3r6?: string | null;
|
|
29347
|
+
h3r7?: string | null;
|
|
29348
|
+
h3r8?: string | null;
|
|
29349
|
+
h3r9?: string | null;
|
|
29350
|
+
h3r10?: string | null;
|
|
29351
|
+
h3r11?: string | null;
|
|
29352
|
+
h3r12?: string | null;
|
|
29353
|
+
h3r13?: string | null;
|
|
29354
|
+
h3r14?: string | null;
|
|
29355
|
+
h3r15?: string | null;
|
|
29356
|
+
} | null;
|
|
28529
29357
|
} | null> | null;
|
|
28530
29358
|
} | null;
|
|
28531
29359
|
};
|
|
@@ -28636,6 +29464,30 @@ export type GetMedicalTherapyQuery = {
|
|
|
28636
29464
|
id: string;
|
|
28637
29465
|
name: string;
|
|
28638
29466
|
} | null;
|
|
29467
|
+
location?: {
|
|
29468
|
+
__typename?: 'Point';
|
|
29469
|
+
latitude?: number | null;
|
|
29470
|
+
longitude?: number | null;
|
|
29471
|
+
} | null;
|
|
29472
|
+
h3?: {
|
|
29473
|
+
__typename?: 'H3';
|
|
29474
|
+
h3r0?: string | null;
|
|
29475
|
+
h3r1?: string | null;
|
|
29476
|
+
h3r2?: string | null;
|
|
29477
|
+
h3r3?: string | null;
|
|
29478
|
+
h3r4?: string | null;
|
|
29479
|
+
h3r5?: string | null;
|
|
29480
|
+
h3r6?: string | null;
|
|
29481
|
+
h3r7?: string | null;
|
|
29482
|
+
h3r8?: string | null;
|
|
29483
|
+
h3r9?: string | null;
|
|
29484
|
+
h3r10?: string | null;
|
|
29485
|
+
h3r11?: string | null;
|
|
29486
|
+
h3r12?: string | null;
|
|
29487
|
+
h3r13?: string | null;
|
|
29488
|
+
h3r14?: string | null;
|
|
29489
|
+
h3r15?: string | null;
|
|
29490
|
+
} | null;
|
|
28639
29491
|
} | null;
|
|
28640
29492
|
};
|
|
28641
29493
|
export type QueryMedicalTherapiesQueryVariables = Exact<{
|
|
@@ -28679,6 +29531,30 @@ export type QueryMedicalTherapiesQuery = {
|
|
|
28679
29531
|
id: string;
|
|
28680
29532
|
name: string;
|
|
28681
29533
|
} | null;
|
|
29534
|
+
location?: {
|
|
29535
|
+
__typename?: 'Point';
|
|
29536
|
+
latitude?: number | null;
|
|
29537
|
+
longitude?: number | null;
|
|
29538
|
+
} | null;
|
|
29539
|
+
h3?: {
|
|
29540
|
+
__typename?: 'H3';
|
|
29541
|
+
h3r0?: string | null;
|
|
29542
|
+
h3r1?: string | null;
|
|
29543
|
+
h3r2?: string | null;
|
|
29544
|
+
h3r3?: string | null;
|
|
29545
|
+
h3r4?: string | null;
|
|
29546
|
+
h3r5?: string | null;
|
|
29547
|
+
h3r6?: string | null;
|
|
29548
|
+
h3r7?: string | null;
|
|
29549
|
+
h3r8?: string | null;
|
|
29550
|
+
h3r9?: string | null;
|
|
29551
|
+
h3r10?: string | null;
|
|
29552
|
+
h3r11?: string | null;
|
|
29553
|
+
h3r12?: string | null;
|
|
29554
|
+
h3r13?: string | null;
|
|
29555
|
+
h3r14?: string | null;
|
|
29556
|
+
h3r15?: string | null;
|
|
29557
|
+
} | null;
|
|
28682
29558
|
} | null> | null;
|
|
28683
29559
|
} | null;
|
|
28684
29560
|
};
|
|
@@ -28851,19 +29727,79 @@ export type GetOrganizationQuery = {
|
|
|
28851
29727
|
linkType?: LinkTypes | null;
|
|
28852
29728
|
excerpts?: string | null;
|
|
28853
29729
|
} | null> | null;
|
|
28854
|
-
workflow?: {
|
|
28855
|
-
__typename?: 'Workflow';
|
|
29730
|
+
workflow?: {
|
|
29731
|
+
__typename?: 'Workflow';
|
|
29732
|
+
id: string;
|
|
29733
|
+
name: string;
|
|
29734
|
+
} | null;
|
|
29735
|
+
location?: {
|
|
29736
|
+
__typename?: 'Point';
|
|
29737
|
+
latitude?: number | null;
|
|
29738
|
+
longitude?: number | null;
|
|
29739
|
+
} | null;
|
|
29740
|
+
h3?: {
|
|
29741
|
+
__typename?: 'H3';
|
|
29742
|
+
h3r0?: string | null;
|
|
29743
|
+
h3r1?: string | null;
|
|
29744
|
+
h3r2?: string | null;
|
|
29745
|
+
h3r3?: string | null;
|
|
29746
|
+
h3r4?: string | null;
|
|
29747
|
+
h3r5?: string | null;
|
|
29748
|
+
h3r6?: string | null;
|
|
29749
|
+
h3r7?: string | null;
|
|
29750
|
+
h3r8?: string | null;
|
|
29751
|
+
h3r9?: string | null;
|
|
29752
|
+
h3r10?: string | null;
|
|
29753
|
+
h3r11?: string | null;
|
|
29754
|
+
h3r12?: string | null;
|
|
29755
|
+
h3r13?: string | null;
|
|
29756
|
+
h3r14?: string | null;
|
|
29757
|
+
h3r15?: string | null;
|
|
29758
|
+
} | null;
|
|
29759
|
+
address?: {
|
|
29760
|
+
__typename?: 'Address';
|
|
29761
|
+
streetAddress?: string | null;
|
|
29762
|
+
city?: string | null;
|
|
29763
|
+
region?: string | null;
|
|
29764
|
+
country?: string | null;
|
|
29765
|
+
postalCode?: string | null;
|
|
29766
|
+
} | null;
|
|
29767
|
+
founders?: Array<{
|
|
29768
|
+
__typename?: 'Person';
|
|
29769
|
+
id: string;
|
|
29770
|
+
} | null> | null;
|
|
29771
|
+
employees?: Array<{
|
|
29772
|
+
__typename?: 'Person';
|
|
29773
|
+
id: string;
|
|
29774
|
+
} | null> | null;
|
|
29775
|
+
members?: Array<{
|
|
29776
|
+
__typename?: 'Person';
|
|
29777
|
+
id: string;
|
|
29778
|
+
} | null> | null;
|
|
29779
|
+
parentOrganization?: {
|
|
29780
|
+
__typename?: 'Organization';
|
|
29781
|
+
id: string;
|
|
29782
|
+
} | null;
|
|
29783
|
+
memberOf?: Array<{
|
|
29784
|
+
__typename?: 'Organization';
|
|
29785
|
+
id: string;
|
|
29786
|
+
} | null> | null;
|
|
29787
|
+
subOrganizations?: Array<{
|
|
29788
|
+
__typename?: 'Organization';
|
|
29789
|
+
id: string;
|
|
29790
|
+
} | null> | null;
|
|
29791
|
+
locations?: Array<{
|
|
29792
|
+
__typename?: 'Place';
|
|
29793
|
+
id: string;
|
|
29794
|
+
} | null> | null;
|
|
29795
|
+
investmentsReceived?: Array<{
|
|
29796
|
+
__typename?: 'Investment';
|
|
28856
29797
|
id: string;
|
|
28857
|
-
|
|
28858
|
-
|
|
28859
|
-
|
|
28860
|
-
|
|
28861
|
-
|
|
28862
|
-
city?: string | null;
|
|
28863
|
-
region?: string | null;
|
|
28864
|
-
country?: string | null;
|
|
28865
|
-
postalCode?: string | null;
|
|
28866
|
-
} | null;
|
|
29798
|
+
} | null> | null;
|
|
29799
|
+
investorFunds?: Array<{
|
|
29800
|
+
__typename?: 'InvestmentFund';
|
|
29801
|
+
id: string;
|
|
29802
|
+
} | null> | null;
|
|
28867
29803
|
} | null;
|
|
28868
29804
|
};
|
|
28869
29805
|
export type QueryOrganizationsQueryVariables = Exact<{
|
|
@@ -28916,6 +29852,30 @@ export type QueryOrganizationsQuery = {
|
|
|
28916
29852
|
id: string;
|
|
28917
29853
|
name: string;
|
|
28918
29854
|
} | null;
|
|
29855
|
+
location?: {
|
|
29856
|
+
__typename?: 'Point';
|
|
29857
|
+
latitude?: number | null;
|
|
29858
|
+
longitude?: number | null;
|
|
29859
|
+
} | null;
|
|
29860
|
+
h3?: {
|
|
29861
|
+
__typename?: 'H3';
|
|
29862
|
+
h3r0?: string | null;
|
|
29863
|
+
h3r1?: string | null;
|
|
29864
|
+
h3r2?: string | null;
|
|
29865
|
+
h3r3?: string | null;
|
|
29866
|
+
h3r4?: string | null;
|
|
29867
|
+
h3r5?: string | null;
|
|
29868
|
+
h3r6?: string | null;
|
|
29869
|
+
h3r7?: string | null;
|
|
29870
|
+
h3r8?: string | null;
|
|
29871
|
+
h3r9?: string | null;
|
|
29872
|
+
h3r10?: string | null;
|
|
29873
|
+
h3r11?: string | null;
|
|
29874
|
+
h3r12?: string | null;
|
|
29875
|
+
h3r13?: string | null;
|
|
29876
|
+
h3r14?: string | null;
|
|
29877
|
+
h3r15?: string | null;
|
|
29878
|
+
} | null;
|
|
28919
29879
|
address?: {
|
|
28920
29880
|
__typename?: 'Address';
|
|
28921
29881
|
streetAddress?: string | null;
|
|
@@ -29055,6 +30015,30 @@ export type GetPersonQuery = {
|
|
|
29055
30015
|
id: string;
|
|
29056
30016
|
name: string;
|
|
29057
30017
|
} | null;
|
|
30018
|
+
location?: {
|
|
30019
|
+
__typename?: 'Point';
|
|
30020
|
+
latitude?: number | null;
|
|
30021
|
+
longitude?: number | null;
|
|
30022
|
+
} | null;
|
|
30023
|
+
h3?: {
|
|
30024
|
+
__typename?: 'H3';
|
|
30025
|
+
h3r0?: string | null;
|
|
30026
|
+
h3r1?: string | null;
|
|
30027
|
+
h3r2?: string | null;
|
|
30028
|
+
h3r3?: string | null;
|
|
30029
|
+
h3r4?: string | null;
|
|
30030
|
+
h3r5?: string | null;
|
|
30031
|
+
h3r6?: string | null;
|
|
30032
|
+
h3r7?: string | null;
|
|
30033
|
+
h3r8?: string | null;
|
|
30034
|
+
h3r9?: string | null;
|
|
30035
|
+
h3r10?: string | null;
|
|
30036
|
+
h3r11?: string | null;
|
|
30037
|
+
h3r12?: string | null;
|
|
30038
|
+
h3r13?: string | null;
|
|
30039
|
+
h3r14?: string | null;
|
|
30040
|
+
h3r15?: string | null;
|
|
30041
|
+
} | null;
|
|
29058
30042
|
address?: {
|
|
29059
30043
|
__typename?: 'Address';
|
|
29060
30044
|
streetAddress?: string | null;
|
|
@@ -29063,6 +30047,38 @@ export type GetPersonQuery = {
|
|
|
29063
30047
|
country?: string | null;
|
|
29064
30048
|
postalCode?: string | null;
|
|
29065
30049
|
} | null;
|
|
30050
|
+
worksFor?: Array<{
|
|
30051
|
+
__typename?: 'Organization';
|
|
30052
|
+
id: string;
|
|
30053
|
+
} | null> | null;
|
|
30054
|
+
affiliation?: Array<{
|
|
30055
|
+
__typename?: 'Organization';
|
|
30056
|
+
id: string;
|
|
30057
|
+
} | null> | null;
|
|
30058
|
+
memberOf?: Array<{
|
|
30059
|
+
__typename?: 'Organization';
|
|
30060
|
+
id: string;
|
|
30061
|
+
} | null> | null;
|
|
30062
|
+
alumniOf?: Array<{
|
|
30063
|
+
__typename?: 'Organization';
|
|
30064
|
+
id: string;
|
|
30065
|
+
} | null> | null;
|
|
30066
|
+
birthPlace?: {
|
|
30067
|
+
__typename?: 'Place';
|
|
30068
|
+
id: string;
|
|
30069
|
+
} | null;
|
|
30070
|
+
deathPlace?: {
|
|
30071
|
+
__typename?: 'Place';
|
|
30072
|
+
id: string;
|
|
30073
|
+
} | null;
|
|
30074
|
+
homeLocation?: Array<{
|
|
30075
|
+
__typename?: 'Place';
|
|
30076
|
+
id: string;
|
|
30077
|
+
} | null> | null;
|
|
30078
|
+
workLocation?: Array<{
|
|
30079
|
+
__typename?: 'Place';
|
|
30080
|
+
id: string;
|
|
30081
|
+
} | null> | null;
|
|
29066
30082
|
} | null;
|
|
29067
30083
|
};
|
|
29068
30084
|
export type QueryPersonsQueryVariables = Exact<{
|
|
@@ -29114,6 +30130,30 @@ export type QueryPersonsQuery = {
|
|
|
29114
30130
|
id: string;
|
|
29115
30131
|
name: string;
|
|
29116
30132
|
} | null;
|
|
30133
|
+
location?: {
|
|
30134
|
+
__typename?: 'Point';
|
|
30135
|
+
latitude?: number | null;
|
|
30136
|
+
longitude?: number | null;
|
|
30137
|
+
} | null;
|
|
30138
|
+
h3?: {
|
|
30139
|
+
__typename?: 'H3';
|
|
30140
|
+
h3r0?: string | null;
|
|
30141
|
+
h3r1?: string | null;
|
|
30142
|
+
h3r2?: string | null;
|
|
30143
|
+
h3r3?: string | null;
|
|
30144
|
+
h3r4?: string | null;
|
|
30145
|
+
h3r5?: string | null;
|
|
30146
|
+
h3r6?: string | null;
|
|
30147
|
+
h3r7?: string | null;
|
|
30148
|
+
h3r8?: string | null;
|
|
30149
|
+
h3r9?: string | null;
|
|
30150
|
+
h3r10?: string | null;
|
|
30151
|
+
h3r11?: string | null;
|
|
30152
|
+
h3r12?: string | null;
|
|
30153
|
+
h3r13?: string | null;
|
|
30154
|
+
h3r14?: string | null;
|
|
30155
|
+
h3r15?: string | null;
|
|
30156
|
+
} | null;
|
|
29117
30157
|
address?: {
|
|
29118
30158
|
__typename?: 'Address';
|
|
29119
30159
|
streetAddress?: string | null;
|
|
@@ -29248,6 +30288,30 @@ export type GetPlaceQuery = {
|
|
|
29248
30288
|
id: string;
|
|
29249
30289
|
name: string;
|
|
29250
30290
|
} | null;
|
|
30291
|
+
location?: {
|
|
30292
|
+
__typename?: 'Point';
|
|
30293
|
+
latitude?: number | null;
|
|
30294
|
+
longitude?: number | null;
|
|
30295
|
+
} | null;
|
|
30296
|
+
h3?: {
|
|
30297
|
+
__typename?: 'H3';
|
|
30298
|
+
h3r0?: string | null;
|
|
30299
|
+
h3r1?: string | null;
|
|
30300
|
+
h3r2?: string | null;
|
|
30301
|
+
h3r3?: string | null;
|
|
30302
|
+
h3r4?: string | null;
|
|
30303
|
+
h3r5?: string | null;
|
|
30304
|
+
h3r6?: string | null;
|
|
30305
|
+
h3r7?: string | null;
|
|
30306
|
+
h3r8?: string | null;
|
|
30307
|
+
h3r9?: string | null;
|
|
30308
|
+
h3r10?: string | null;
|
|
30309
|
+
h3r11?: string | null;
|
|
30310
|
+
h3r12?: string | null;
|
|
30311
|
+
h3r13?: string | null;
|
|
30312
|
+
h3r14?: string | null;
|
|
30313
|
+
h3r15?: string | null;
|
|
30314
|
+
} | null;
|
|
29251
30315
|
address?: {
|
|
29252
30316
|
__typename?: 'Address';
|
|
29253
30317
|
streetAddress?: string | null;
|
|
@@ -29302,6 +30366,30 @@ export type QueryPlacesQuery = {
|
|
|
29302
30366
|
id: string;
|
|
29303
30367
|
name: string;
|
|
29304
30368
|
} | null;
|
|
30369
|
+
location?: {
|
|
30370
|
+
__typename?: 'Point';
|
|
30371
|
+
latitude?: number | null;
|
|
30372
|
+
longitude?: number | null;
|
|
30373
|
+
} | null;
|
|
30374
|
+
h3?: {
|
|
30375
|
+
__typename?: 'H3';
|
|
30376
|
+
h3r0?: string | null;
|
|
30377
|
+
h3r1?: string | null;
|
|
30378
|
+
h3r2?: string | null;
|
|
30379
|
+
h3r3?: string | null;
|
|
30380
|
+
h3r4?: string | null;
|
|
30381
|
+
h3r5?: string | null;
|
|
30382
|
+
h3r6?: string | null;
|
|
30383
|
+
h3r7?: string | null;
|
|
30384
|
+
h3r8?: string | null;
|
|
30385
|
+
h3r9?: string | null;
|
|
30386
|
+
h3r10?: string | null;
|
|
30387
|
+
h3r11?: string | null;
|
|
30388
|
+
h3r12?: string | null;
|
|
30389
|
+
h3r13?: string | null;
|
|
30390
|
+
h3r14?: string | null;
|
|
30391
|
+
h3r15?: string | null;
|
|
30392
|
+
} | null;
|
|
29305
30393
|
address?: {
|
|
29306
30394
|
__typename?: 'Address';
|
|
29307
30395
|
streetAddress?: string | null;
|
|
@@ -29442,6 +30530,30 @@ export type GetProductQuery = {
|
|
|
29442
30530
|
id: string;
|
|
29443
30531
|
name: string;
|
|
29444
30532
|
} | null;
|
|
30533
|
+
location?: {
|
|
30534
|
+
__typename?: 'Point';
|
|
30535
|
+
latitude?: number | null;
|
|
30536
|
+
longitude?: number | null;
|
|
30537
|
+
} | null;
|
|
30538
|
+
h3?: {
|
|
30539
|
+
__typename?: 'H3';
|
|
30540
|
+
h3r0?: string | null;
|
|
30541
|
+
h3r1?: string | null;
|
|
30542
|
+
h3r2?: string | null;
|
|
30543
|
+
h3r3?: string | null;
|
|
30544
|
+
h3r4?: string | null;
|
|
30545
|
+
h3r5?: string | null;
|
|
30546
|
+
h3r6?: string | null;
|
|
30547
|
+
h3r7?: string | null;
|
|
30548
|
+
h3r8?: string | null;
|
|
30549
|
+
h3r9?: string | null;
|
|
30550
|
+
h3r10?: string | null;
|
|
30551
|
+
h3r11?: string | null;
|
|
30552
|
+
h3r12?: string | null;
|
|
30553
|
+
h3r13?: string | null;
|
|
30554
|
+
h3r14?: string | null;
|
|
30555
|
+
h3r15?: string | null;
|
|
30556
|
+
} | null;
|
|
29445
30557
|
address?: {
|
|
29446
30558
|
__typename?: 'Address';
|
|
29447
30559
|
streetAddress?: string | null;
|
|
@@ -29502,6 +30614,30 @@ export type QueryProductsQuery = {
|
|
|
29502
30614
|
id: string;
|
|
29503
30615
|
name: string;
|
|
29504
30616
|
} | null;
|
|
30617
|
+
location?: {
|
|
30618
|
+
__typename?: 'Point';
|
|
30619
|
+
latitude?: number | null;
|
|
30620
|
+
longitude?: number | null;
|
|
30621
|
+
} | null;
|
|
30622
|
+
h3?: {
|
|
30623
|
+
__typename?: 'H3';
|
|
30624
|
+
h3r0?: string | null;
|
|
30625
|
+
h3r1?: string | null;
|
|
30626
|
+
h3r2?: string | null;
|
|
30627
|
+
h3r3?: string | null;
|
|
30628
|
+
h3r4?: string | null;
|
|
30629
|
+
h3r5?: string | null;
|
|
30630
|
+
h3r6?: string | null;
|
|
30631
|
+
h3r7?: string | null;
|
|
30632
|
+
h3r8?: string | null;
|
|
30633
|
+
h3r9?: string | null;
|
|
30634
|
+
h3r10?: string | null;
|
|
30635
|
+
h3r11?: string | null;
|
|
30636
|
+
h3r12?: string | null;
|
|
30637
|
+
h3r13?: string | null;
|
|
30638
|
+
h3r14?: string | null;
|
|
30639
|
+
h3r15?: string | null;
|
|
30640
|
+
} | null;
|
|
29505
30641
|
address?: {
|
|
29506
30642
|
__typename?: 'Address';
|
|
29507
30643
|
streetAddress?: string | null;
|
|
@@ -29817,20 +30953,11 @@ export type GetRepoQuery = {
|
|
|
29817
30953
|
__typename?: 'Query';
|
|
29818
30954
|
repo?: {
|
|
29819
30955
|
__typename?: 'Repo';
|
|
29820
|
-
id: string;
|
|
29821
|
-
name: string;
|
|
29822
|
-
creationDate: any;
|
|
29823
|
-
modifiedDate?: any | null;
|
|
29824
|
-
state: EntityState;
|
|
29825
30956
|
alternateNames?: Array<string | null> | null;
|
|
29826
30957
|
uri?: any | null;
|
|
29827
30958
|
description?: string | null;
|
|
29828
30959
|
identifier?: string | null;
|
|
29829
30960
|
thing?: string | null;
|
|
29830
|
-
owner: {
|
|
29831
|
-
__typename?: 'Owner';
|
|
29832
|
-
id: string;
|
|
29833
|
-
};
|
|
29834
30961
|
feeds?: Array<{
|
|
29835
30962
|
__typename?: 'Feed';
|
|
29836
30963
|
id: string;
|
|
@@ -29859,21 +30986,11 @@ export type QueryReposQuery = {
|
|
|
29859
30986
|
__typename?: 'RepoResults';
|
|
29860
30987
|
results?: Array<{
|
|
29861
30988
|
__typename?: 'Repo';
|
|
29862
|
-
id: string;
|
|
29863
|
-
name: string;
|
|
29864
|
-
creationDate: any;
|
|
29865
|
-
modifiedDate?: any | null;
|
|
29866
|
-
relevance?: number | null;
|
|
29867
|
-
state: EntityState;
|
|
29868
30989
|
alternateNames?: Array<string | null> | null;
|
|
29869
30990
|
uri?: any | null;
|
|
29870
30991
|
description?: string | null;
|
|
29871
30992
|
identifier?: string | null;
|
|
29872
30993
|
thing?: string | null;
|
|
29873
|
-
owner: {
|
|
29874
|
-
__typename?: 'Owner';
|
|
29875
|
-
id: string;
|
|
29876
|
-
};
|
|
29877
30994
|
feeds?: Array<{
|
|
29878
30995
|
__typename?: 'Feed';
|
|
29879
30996
|
id: string;
|
|
@@ -30002,22 +31119,13 @@ export type GetSoftwareQuery = {
|
|
|
30002
31119
|
__typename?: 'Query';
|
|
30003
31120
|
software?: {
|
|
30004
31121
|
__typename?: 'Software';
|
|
30005
|
-
|
|
30006
|
-
|
|
30007
|
-
creationDate: any;
|
|
30008
|
-
modifiedDate?: any | null;
|
|
30009
|
-
state: EntityState;
|
|
31122
|
+
releaseDate?: any | null;
|
|
31123
|
+
developer?: string | null;
|
|
30010
31124
|
alternateNames?: Array<string | null> | null;
|
|
30011
31125
|
uri?: any | null;
|
|
30012
31126
|
description?: string | null;
|
|
30013
31127
|
identifier?: string | null;
|
|
30014
31128
|
thing?: string | null;
|
|
30015
|
-
releaseDate?: any | null;
|
|
30016
|
-
developer?: string | null;
|
|
30017
|
-
owner: {
|
|
30018
|
-
__typename?: 'Owner';
|
|
30019
|
-
id: string;
|
|
30020
|
-
};
|
|
30021
31129
|
feeds?: Array<{
|
|
30022
31130
|
__typename?: 'Feed';
|
|
30023
31131
|
id: string;
|
|
@@ -30046,23 +31154,13 @@ export type QuerySoftwaresQuery = {
|
|
|
30046
31154
|
__typename?: 'SoftwareResults';
|
|
30047
31155
|
results?: Array<{
|
|
30048
31156
|
__typename?: 'Software';
|
|
30049
|
-
|
|
30050
|
-
|
|
30051
|
-
creationDate: any;
|
|
30052
|
-
modifiedDate?: any | null;
|
|
30053
|
-
relevance?: number | null;
|
|
30054
|
-
state: EntityState;
|
|
31157
|
+
releaseDate?: any | null;
|
|
31158
|
+
developer?: string | null;
|
|
30055
31159
|
alternateNames?: Array<string | null> | null;
|
|
30056
31160
|
uri?: any | null;
|
|
30057
31161
|
description?: string | null;
|
|
30058
31162
|
identifier?: string | null;
|
|
30059
31163
|
thing?: string | null;
|
|
30060
|
-
releaseDate?: any | null;
|
|
30061
|
-
developer?: string | null;
|
|
30062
|
-
owner: {
|
|
30063
|
-
__typename?: 'Owner';
|
|
30064
|
-
id: string;
|
|
30065
|
-
};
|
|
30066
31164
|
feeds?: Array<{
|
|
30067
31165
|
__typename?: 'Feed';
|
|
30068
31166
|
id: string;
|