graphlit-client 1.0.20251129001 → 1.0.20251129002
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +38 -18
- package/dist/client.js +176 -36
- package/dist/generated/graphql-documents.d.ts +20 -0
- package/dist/generated/graphql-documents.js +1526 -46
- package/dist/generated/graphql-types.d.ts +1850 -116
- package/package.json +1 -1
|
@@ -26032,6 +26032,109 @@ export type QueryEventsQuery = {
|
|
|
26032
26032
|
} | null> | null;
|
|
26033
26033
|
} | null;
|
|
26034
26034
|
};
|
|
26035
|
+
export type QueryEventsClustersQueryVariables = Exact<{
|
|
26036
|
+
filter?: InputMaybe<EventFilter>;
|
|
26037
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
26038
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
26039
|
+
}>;
|
|
26040
|
+
export type QueryEventsClustersQuery = {
|
|
26041
|
+
__typename?: 'Query';
|
|
26042
|
+
events?: {
|
|
26043
|
+
__typename?: 'EventResults';
|
|
26044
|
+
results?: Array<{
|
|
26045
|
+
__typename?: 'Event';
|
|
26046
|
+
id: string;
|
|
26047
|
+
name: string;
|
|
26048
|
+
creationDate: any;
|
|
26049
|
+
modifiedDate?: any | null;
|
|
26050
|
+
relevance?: number | null;
|
|
26051
|
+
state: EntityState;
|
|
26052
|
+
alternateNames?: Array<string | null> | null;
|
|
26053
|
+
uri?: any | null;
|
|
26054
|
+
description?: string | null;
|
|
26055
|
+
identifier?: string | null;
|
|
26056
|
+
thing?: string | null;
|
|
26057
|
+
startDate?: any | null;
|
|
26058
|
+
endDate?: any | null;
|
|
26059
|
+
availabilityStartDate?: any | null;
|
|
26060
|
+
availabilityEndDate?: any | null;
|
|
26061
|
+
price?: any | null;
|
|
26062
|
+
minPrice?: any | null;
|
|
26063
|
+
maxPrice?: any | null;
|
|
26064
|
+
priceCurrency?: string | null;
|
|
26065
|
+
isAccessibleForFree?: boolean | null;
|
|
26066
|
+
typicalAgeRange?: string | null;
|
|
26067
|
+
organizer?: string | null;
|
|
26068
|
+
performer?: string | null;
|
|
26069
|
+
sponsor?: string | null;
|
|
26070
|
+
eventStatus?: string | null;
|
|
26071
|
+
owner: {
|
|
26072
|
+
__typename?: 'Owner';
|
|
26073
|
+
id: string;
|
|
26074
|
+
};
|
|
26075
|
+
feeds?: Array<{
|
|
26076
|
+
__typename?: 'Feed';
|
|
26077
|
+
id: string;
|
|
26078
|
+
name: string;
|
|
26079
|
+
} | null> | null;
|
|
26080
|
+
links?: Array<{
|
|
26081
|
+
__typename?: 'LinkReference';
|
|
26082
|
+
uri?: any | null;
|
|
26083
|
+
linkType?: LinkTypes | null;
|
|
26084
|
+
excerpts?: string | null;
|
|
26085
|
+
} | null> | null;
|
|
26086
|
+
workflow?: {
|
|
26087
|
+
__typename?: 'Workflow';
|
|
26088
|
+
id: string;
|
|
26089
|
+
name: string;
|
|
26090
|
+
} | null;
|
|
26091
|
+
location?: {
|
|
26092
|
+
__typename?: 'Point';
|
|
26093
|
+
latitude?: number | null;
|
|
26094
|
+
longitude?: number | null;
|
|
26095
|
+
} | null;
|
|
26096
|
+
h3?: {
|
|
26097
|
+
__typename?: 'H3';
|
|
26098
|
+
h3r0?: string | null;
|
|
26099
|
+
h3r1?: string | null;
|
|
26100
|
+
h3r2?: string | null;
|
|
26101
|
+
h3r3?: string | null;
|
|
26102
|
+
h3r4?: string | null;
|
|
26103
|
+
h3r5?: string | null;
|
|
26104
|
+
h3r6?: string | null;
|
|
26105
|
+
h3r7?: string | null;
|
|
26106
|
+
h3r8?: string | null;
|
|
26107
|
+
h3r9?: string | null;
|
|
26108
|
+
h3r10?: string | null;
|
|
26109
|
+
h3r11?: string | null;
|
|
26110
|
+
h3r12?: string | null;
|
|
26111
|
+
h3r13?: string | null;
|
|
26112
|
+
h3r14?: string | null;
|
|
26113
|
+
h3r15?: string | null;
|
|
26114
|
+
} | null;
|
|
26115
|
+
address?: {
|
|
26116
|
+
__typename?: 'Address';
|
|
26117
|
+
streetAddress?: string | null;
|
|
26118
|
+
city?: string | null;
|
|
26119
|
+
region?: string | null;
|
|
26120
|
+
country?: string | null;
|
|
26121
|
+
postalCode?: string | null;
|
|
26122
|
+
} | null;
|
|
26123
|
+
} | null> | null;
|
|
26124
|
+
clusters?: {
|
|
26125
|
+
__typename?: 'EntityClusters';
|
|
26126
|
+
clusters?: Array<{
|
|
26127
|
+
__typename?: 'EntityCluster';
|
|
26128
|
+
similarity?: number | null;
|
|
26129
|
+
entities: Array<{
|
|
26130
|
+
__typename?: 'NamedEntityReference';
|
|
26131
|
+
id: string;
|
|
26132
|
+
name?: string | null;
|
|
26133
|
+
}>;
|
|
26134
|
+
}> | null;
|
|
26135
|
+
} | null;
|
|
26136
|
+
} | null;
|
|
26137
|
+
};
|
|
26035
26138
|
export type UpdateEventMutationVariables = Exact<{
|
|
26036
26139
|
event: EventUpdateInput;
|
|
26037
26140
|
}>;
|
|
@@ -27505,6 +27608,102 @@ export type QueryInvestmentsQuery = {
|
|
|
27505
27608
|
} | null> | null;
|
|
27506
27609
|
} | null;
|
|
27507
27610
|
};
|
|
27611
|
+
export type QueryInvestmentsClustersQueryVariables = Exact<{
|
|
27612
|
+
filter?: InputMaybe<InvestmentFilter>;
|
|
27613
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
27614
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27615
|
+
}>;
|
|
27616
|
+
export type QueryInvestmentsClustersQuery = {
|
|
27617
|
+
__typename?: 'Query';
|
|
27618
|
+
investments?: {
|
|
27619
|
+
__typename?: 'InvestmentResults';
|
|
27620
|
+
results?: Array<{
|
|
27621
|
+
__typename?: 'Investment';
|
|
27622
|
+
id: string;
|
|
27623
|
+
name: string;
|
|
27624
|
+
creationDate: any;
|
|
27625
|
+
modifiedDate?: any | null;
|
|
27626
|
+
relevance?: number | null;
|
|
27627
|
+
state: EntityState;
|
|
27628
|
+
alternateNames?: Array<string | null> | null;
|
|
27629
|
+
uri?: any | null;
|
|
27630
|
+
description?: string | null;
|
|
27631
|
+
identifier?: string | null;
|
|
27632
|
+
thing?: string | null;
|
|
27633
|
+
amount?: any | null;
|
|
27634
|
+
amountCurrency?: string | null;
|
|
27635
|
+
status?: string | null;
|
|
27636
|
+
stage?: string | null;
|
|
27637
|
+
investmentDate?: any | null;
|
|
27638
|
+
roundSize?: any | null;
|
|
27639
|
+
roundSizeCurrency?: string | null;
|
|
27640
|
+
postValuation?: any | null;
|
|
27641
|
+
postValuationCurrency?: string | null;
|
|
27642
|
+
sharesOwned?: any | null;
|
|
27643
|
+
vehicle?: string | null;
|
|
27644
|
+
entryPricePerShare?: any | null;
|
|
27645
|
+
currentPricePerShare?: any | null;
|
|
27646
|
+
discountPercent?: any | null;
|
|
27647
|
+
proRataRights?: boolean | null;
|
|
27648
|
+
owner: {
|
|
27649
|
+
__typename?: 'Owner';
|
|
27650
|
+
id: string;
|
|
27651
|
+
};
|
|
27652
|
+
feeds?: Array<{
|
|
27653
|
+
__typename?: 'Feed';
|
|
27654
|
+
id: string;
|
|
27655
|
+
name: string;
|
|
27656
|
+
} | null> | null;
|
|
27657
|
+
links?: Array<{
|
|
27658
|
+
__typename?: 'LinkReference';
|
|
27659
|
+
uri?: any | null;
|
|
27660
|
+
linkType?: LinkTypes | null;
|
|
27661
|
+
excerpts?: string | null;
|
|
27662
|
+
} | null> | null;
|
|
27663
|
+
workflow?: {
|
|
27664
|
+
__typename?: 'Workflow';
|
|
27665
|
+
id: string;
|
|
27666
|
+
name: string;
|
|
27667
|
+
} | null;
|
|
27668
|
+
location?: {
|
|
27669
|
+
__typename?: 'Point';
|
|
27670
|
+
latitude?: number | null;
|
|
27671
|
+
longitude?: number | null;
|
|
27672
|
+
} | null;
|
|
27673
|
+
h3?: {
|
|
27674
|
+
__typename?: 'H3';
|
|
27675
|
+
h3r0?: string | null;
|
|
27676
|
+
h3r1?: string | null;
|
|
27677
|
+
h3r2?: string | null;
|
|
27678
|
+
h3r3?: string | null;
|
|
27679
|
+
h3r4?: string | null;
|
|
27680
|
+
h3r5?: string | null;
|
|
27681
|
+
h3r6?: string | null;
|
|
27682
|
+
h3r7?: string | null;
|
|
27683
|
+
h3r8?: string | null;
|
|
27684
|
+
h3r9?: string | null;
|
|
27685
|
+
h3r10?: string | null;
|
|
27686
|
+
h3r11?: string | null;
|
|
27687
|
+
h3r12?: string | null;
|
|
27688
|
+
h3r13?: string | null;
|
|
27689
|
+
h3r14?: string | null;
|
|
27690
|
+
h3r15?: string | null;
|
|
27691
|
+
} | null;
|
|
27692
|
+
} | null> | null;
|
|
27693
|
+
clusters?: {
|
|
27694
|
+
__typename?: 'EntityClusters';
|
|
27695
|
+
clusters?: Array<{
|
|
27696
|
+
__typename?: 'EntityCluster';
|
|
27697
|
+
similarity?: number | null;
|
|
27698
|
+
entities: Array<{
|
|
27699
|
+
__typename?: 'NamedEntityReference';
|
|
27700
|
+
id: string;
|
|
27701
|
+
name?: string | null;
|
|
27702
|
+
}>;
|
|
27703
|
+
}> | null;
|
|
27704
|
+
} | null;
|
|
27705
|
+
} | null;
|
|
27706
|
+
};
|
|
27508
27707
|
export type QueryInvestmentsExpandedQueryVariables = Exact<{
|
|
27509
27708
|
filter?: InputMaybe<InvestmentFilter>;
|
|
27510
27709
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -27831,11 +28030,12 @@ export type QueryInvestmentFundsQuery = {
|
|
|
27831
28030
|
} | null> | null;
|
|
27832
28031
|
} | null;
|
|
27833
28032
|
};
|
|
27834
|
-
export type
|
|
28033
|
+
export type QueryInvestmentFundsClustersQueryVariables = Exact<{
|
|
27835
28034
|
filter?: InputMaybe<InvestmentFundFilter>;
|
|
28035
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
27836
28036
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
27837
28037
|
}>;
|
|
27838
|
-
export type
|
|
28038
|
+
export type QueryInvestmentFundsClustersQuery = {
|
|
27839
28039
|
__typename?: 'Query';
|
|
27840
28040
|
investmentFunds?: {
|
|
27841
28041
|
__typename?: 'InvestmentFundResults';
|
|
@@ -27902,37 +28102,123 @@ export type QueryInvestmentFundsExpandedQuery = {
|
|
|
27902
28102
|
h3r14?: string | null;
|
|
27903
28103
|
h3r15?: string | null;
|
|
27904
28104
|
} | null;
|
|
27905
|
-
|
|
27906
|
-
|
|
28105
|
+
} | null> | null;
|
|
28106
|
+
clusters?: {
|
|
28107
|
+
__typename?: 'EntityClusters';
|
|
28108
|
+
clusters?: Array<{
|
|
28109
|
+
__typename?: 'EntityCluster';
|
|
28110
|
+
similarity?: number | null;
|
|
28111
|
+
entities: Array<{
|
|
28112
|
+
__typename?: 'NamedEntityReference';
|
|
28113
|
+
id: string;
|
|
28114
|
+
name?: string | null;
|
|
28115
|
+
}>;
|
|
28116
|
+
}> | null;
|
|
28117
|
+
} | null;
|
|
28118
|
+
} | null;
|
|
28119
|
+
};
|
|
28120
|
+
export type QueryInvestmentFundsExpandedQueryVariables = Exact<{
|
|
28121
|
+
filter?: InputMaybe<InvestmentFundFilter>;
|
|
28122
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
28123
|
+
}>;
|
|
28124
|
+
export type QueryInvestmentFundsExpandedQuery = {
|
|
28125
|
+
__typename?: 'Query';
|
|
28126
|
+
investmentFunds?: {
|
|
28127
|
+
__typename?: 'InvestmentFundResults';
|
|
28128
|
+
results?: Array<{
|
|
28129
|
+
__typename?: 'InvestmentFund';
|
|
28130
|
+
id: string;
|
|
28131
|
+
name: string;
|
|
28132
|
+
creationDate: any;
|
|
28133
|
+
modifiedDate?: any | null;
|
|
28134
|
+
relevance?: number | null;
|
|
28135
|
+
state: EntityState;
|
|
28136
|
+
alternateNames?: Array<string | null> | null;
|
|
28137
|
+
uri?: any | null;
|
|
28138
|
+
description?: string | null;
|
|
28139
|
+
identifier?: string | null;
|
|
28140
|
+
thing?: string | null;
|
|
28141
|
+
amount?: any | null;
|
|
28142
|
+
amountCurrency?: string | null;
|
|
28143
|
+
fundType?: string | null;
|
|
28144
|
+
vintage?: number | null;
|
|
28145
|
+
targetSize?: any | null;
|
|
28146
|
+
targetSizeCurrency?: string | null;
|
|
28147
|
+
owner: {
|
|
28148
|
+
__typename?: 'Owner';
|
|
27907
28149
|
id: string;
|
|
27908
|
-
|
|
27909
|
-
|
|
27910
|
-
|
|
27911
|
-
__typename?: 'Investment';
|
|
28150
|
+
};
|
|
28151
|
+
feeds?: Array<{
|
|
28152
|
+
__typename?: 'Feed';
|
|
27912
28153
|
id: string;
|
|
27913
28154
|
name: string;
|
|
27914
28155
|
} | null> | null;
|
|
27915
|
-
|
|
27916
|
-
__typename?: '
|
|
28156
|
+
links?: Array<{
|
|
28157
|
+
__typename?: 'LinkReference';
|
|
28158
|
+
uri?: any | null;
|
|
28159
|
+
linkType?: LinkTypes | null;
|
|
28160
|
+
excerpts?: string | null;
|
|
28161
|
+
} | null> | null;
|
|
28162
|
+
workflow?: {
|
|
28163
|
+
__typename?: 'Workflow';
|
|
27917
28164
|
id: string;
|
|
27918
28165
|
name: string;
|
|
27919
28166
|
} | null;
|
|
27920
|
-
|
|
27921
|
-
__typename?: '
|
|
27922
|
-
|
|
27923
|
-
|
|
27924
|
-
} | null
|
|
27925
|
-
|
|
27926
|
-
|
|
27927
|
-
|
|
27928
|
-
|
|
27929
|
-
|
|
27930
|
-
|
|
27931
|
-
|
|
27932
|
-
|
|
27933
|
-
|
|
27934
|
-
|
|
27935
|
-
|
|
28167
|
+
location?: {
|
|
28168
|
+
__typename?: 'Point';
|
|
28169
|
+
latitude?: number | null;
|
|
28170
|
+
longitude?: number | null;
|
|
28171
|
+
} | null;
|
|
28172
|
+
h3?: {
|
|
28173
|
+
__typename?: 'H3';
|
|
28174
|
+
h3r0?: string | null;
|
|
28175
|
+
h3r1?: string | null;
|
|
28176
|
+
h3r2?: string | null;
|
|
28177
|
+
h3r3?: string | null;
|
|
28178
|
+
h3r4?: string | null;
|
|
28179
|
+
h3r5?: string | null;
|
|
28180
|
+
h3r6?: string | null;
|
|
28181
|
+
h3r7?: string | null;
|
|
28182
|
+
h3r8?: string | null;
|
|
28183
|
+
h3r9?: string | null;
|
|
28184
|
+
h3r10?: string | null;
|
|
28185
|
+
h3r11?: string | null;
|
|
28186
|
+
h3r12?: string | null;
|
|
28187
|
+
h3r13?: string | null;
|
|
28188
|
+
h3r14?: string | null;
|
|
28189
|
+
h3r15?: string | null;
|
|
28190
|
+
} | null;
|
|
28191
|
+
organizations?: Array<{
|
|
28192
|
+
__typename?: 'Organization';
|
|
28193
|
+
id: string;
|
|
28194
|
+
name: string;
|
|
28195
|
+
} | null> | null;
|
|
28196
|
+
investments?: Array<{
|
|
28197
|
+
__typename?: 'Investment';
|
|
28198
|
+
id: string;
|
|
28199
|
+
name: string;
|
|
28200
|
+
} | null> | null;
|
|
28201
|
+
parentFund?: {
|
|
28202
|
+
__typename?: 'InvestmentFund';
|
|
28203
|
+
id: string;
|
|
28204
|
+
name: string;
|
|
28205
|
+
} | null;
|
|
28206
|
+
childFunds?: Array<{
|
|
28207
|
+
__typename?: 'InvestmentFund';
|
|
28208
|
+
id: string;
|
|
28209
|
+
name: string;
|
|
28210
|
+
} | null> | null;
|
|
28211
|
+
} | null> | null;
|
|
28212
|
+
} | null;
|
|
28213
|
+
};
|
|
28214
|
+
export type UpdateInvestmentFundMutationVariables = Exact<{
|
|
28215
|
+
investmentFund: InvestmentFundUpdateInput;
|
|
28216
|
+
}>;
|
|
28217
|
+
export type UpdateInvestmentFundMutation = {
|
|
28218
|
+
__typename?: 'Mutation';
|
|
28219
|
+
updateInvestmentFund?: {
|
|
28220
|
+
__typename?: 'InvestmentFund';
|
|
28221
|
+
id: string;
|
|
27936
28222
|
name: string;
|
|
27937
28223
|
} | null;
|
|
27938
28224
|
};
|
|
@@ -28248,6 +28534,87 @@ export type QueryMedicalConditionsQuery = {
|
|
|
28248
28534
|
} | null> | null;
|
|
28249
28535
|
} | null;
|
|
28250
28536
|
};
|
|
28537
|
+
export type QueryMedicalConditionsClustersQueryVariables = Exact<{
|
|
28538
|
+
filter?: InputMaybe<MedicalConditionFilter>;
|
|
28539
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
28540
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
28541
|
+
}>;
|
|
28542
|
+
export type QueryMedicalConditionsClustersQuery = {
|
|
28543
|
+
__typename?: 'Query';
|
|
28544
|
+
medicalConditions?: {
|
|
28545
|
+
__typename?: 'MedicalConditionResults';
|
|
28546
|
+
results?: Array<{
|
|
28547
|
+
__typename?: 'MedicalCondition';
|
|
28548
|
+
id: string;
|
|
28549
|
+
name: string;
|
|
28550
|
+
creationDate: any;
|
|
28551
|
+
modifiedDate?: any | null;
|
|
28552
|
+
relevance?: number | null;
|
|
28553
|
+
state: EntityState;
|
|
28554
|
+
alternateNames?: Array<string | null> | null;
|
|
28555
|
+
uri?: any | null;
|
|
28556
|
+
description?: string | null;
|
|
28557
|
+
identifier?: string | null;
|
|
28558
|
+
thing?: string | null;
|
|
28559
|
+
owner: {
|
|
28560
|
+
__typename?: 'Owner';
|
|
28561
|
+
id: string;
|
|
28562
|
+
};
|
|
28563
|
+
feeds?: Array<{
|
|
28564
|
+
__typename?: 'Feed';
|
|
28565
|
+
id: string;
|
|
28566
|
+
name: string;
|
|
28567
|
+
} | null> | null;
|
|
28568
|
+
links?: Array<{
|
|
28569
|
+
__typename?: 'LinkReference';
|
|
28570
|
+
uri?: any | null;
|
|
28571
|
+
linkType?: LinkTypes | null;
|
|
28572
|
+
excerpts?: string | null;
|
|
28573
|
+
} | null> | null;
|
|
28574
|
+
workflow?: {
|
|
28575
|
+
__typename?: 'Workflow';
|
|
28576
|
+
id: string;
|
|
28577
|
+
name: string;
|
|
28578
|
+
} | null;
|
|
28579
|
+
location?: {
|
|
28580
|
+
__typename?: 'Point';
|
|
28581
|
+
latitude?: number | null;
|
|
28582
|
+
longitude?: number | null;
|
|
28583
|
+
} | null;
|
|
28584
|
+
h3?: {
|
|
28585
|
+
__typename?: 'H3';
|
|
28586
|
+
h3r0?: string | null;
|
|
28587
|
+
h3r1?: string | null;
|
|
28588
|
+
h3r2?: string | null;
|
|
28589
|
+
h3r3?: string | null;
|
|
28590
|
+
h3r4?: string | null;
|
|
28591
|
+
h3r5?: string | null;
|
|
28592
|
+
h3r6?: string | null;
|
|
28593
|
+
h3r7?: string | null;
|
|
28594
|
+
h3r8?: string | null;
|
|
28595
|
+
h3r9?: string | null;
|
|
28596
|
+
h3r10?: string | null;
|
|
28597
|
+
h3r11?: string | null;
|
|
28598
|
+
h3r12?: string | null;
|
|
28599
|
+
h3r13?: string | null;
|
|
28600
|
+
h3r14?: string | null;
|
|
28601
|
+
h3r15?: string | null;
|
|
28602
|
+
} | null;
|
|
28603
|
+
} | null> | null;
|
|
28604
|
+
clusters?: {
|
|
28605
|
+
__typename?: 'EntityClusters';
|
|
28606
|
+
clusters?: Array<{
|
|
28607
|
+
__typename?: 'EntityCluster';
|
|
28608
|
+
similarity?: number | null;
|
|
28609
|
+
entities: Array<{
|
|
28610
|
+
__typename?: 'NamedEntityReference';
|
|
28611
|
+
id: string;
|
|
28612
|
+
name?: string | null;
|
|
28613
|
+
}>;
|
|
28614
|
+
}> | null;
|
|
28615
|
+
} | null;
|
|
28616
|
+
} | null;
|
|
28617
|
+
};
|
|
28251
28618
|
export type UpdateMedicalConditionMutationVariables = Exact<{
|
|
28252
28619
|
medicalCondition: MedicalConditionUpdateInput;
|
|
28253
28620
|
}>;
|
|
@@ -28449,6 +28816,87 @@ export type QueryMedicalContraindicationsQuery = {
|
|
|
28449
28816
|
} | null> | null;
|
|
28450
28817
|
} | null;
|
|
28451
28818
|
};
|
|
28819
|
+
export type QueryMedicalContraindicationsClustersQueryVariables = Exact<{
|
|
28820
|
+
filter?: InputMaybe<MedicalContraindicationFilter>;
|
|
28821
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
28822
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
28823
|
+
}>;
|
|
28824
|
+
export type QueryMedicalContraindicationsClustersQuery = {
|
|
28825
|
+
__typename?: 'Query';
|
|
28826
|
+
medicalContraindications?: {
|
|
28827
|
+
__typename?: 'MedicalContraindicationResults';
|
|
28828
|
+
results?: Array<{
|
|
28829
|
+
__typename?: 'MedicalContraindication';
|
|
28830
|
+
id: string;
|
|
28831
|
+
name: string;
|
|
28832
|
+
creationDate: any;
|
|
28833
|
+
modifiedDate?: any | null;
|
|
28834
|
+
relevance?: number | null;
|
|
28835
|
+
state: EntityState;
|
|
28836
|
+
alternateNames?: Array<string | null> | null;
|
|
28837
|
+
uri?: any | null;
|
|
28838
|
+
description?: string | null;
|
|
28839
|
+
identifier?: string | null;
|
|
28840
|
+
thing?: string | null;
|
|
28841
|
+
owner: {
|
|
28842
|
+
__typename?: 'Owner';
|
|
28843
|
+
id: string;
|
|
28844
|
+
};
|
|
28845
|
+
feeds?: Array<{
|
|
28846
|
+
__typename?: 'Feed';
|
|
28847
|
+
id: string;
|
|
28848
|
+
name: string;
|
|
28849
|
+
} | null> | null;
|
|
28850
|
+
links?: Array<{
|
|
28851
|
+
__typename?: 'LinkReference';
|
|
28852
|
+
uri?: any | null;
|
|
28853
|
+
linkType?: LinkTypes | null;
|
|
28854
|
+
excerpts?: string | null;
|
|
28855
|
+
} | null> | null;
|
|
28856
|
+
workflow?: {
|
|
28857
|
+
__typename?: 'Workflow';
|
|
28858
|
+
id: string;
|
|
28859
|
+
name: string;
|
|
28860
|
+
} | null;
|
|
28861
|
+
location?: {
|
|
28862
|
+
__typename?: 'Point';
|
|
28863
|
+
latitude?: number | null;
|
|
28864
|
+
longitude?: number | null;
|
|
28865
|
+
} | null;
|
|
28866
|
+
h3?: {
|
|
28867
|
+
__typename?: 'H3';
|
|
28868
|
+
h3r0?: string | null;
|
|
28869
|
+
h3r1?: string | null;
|
|
28870
|
+
h3r2?: string | null;
|
|
28871
|
+
h3r3?: string | null;
|
|
28872
|
+
h3r4?: string | null;
|
|
28873
|
+
h3r5?: string | null;
|
|
28874
|
+
h3r6?: string | null;
|
|
28875
|
+
h3r7?: string | null;
|
|
28876
|
+
h3r8?: string | null;
|
|
28877
|
+
h3r9?: string | null;
|
|
28878
|
+
h3r10?: string | null;
|
|
28879
|
+
h3r11?: string | null;
|
|
28880
|
+
h3r12?: string | null;
|
|
28881
|
+
h3r13?: string | null;
|
|
28882
|
+
h3r14?: string | null;
|
|
28883
|
+
h3r15?: string | null;
|
|
28884
|
+
} | null;
|
|
28885
|
+
} | null> | null;
|
|
28886
|
+
clusters?: {
|
|
28887
|
+
__typename?: 'EntityClusters';
|
|
28888
|
+
clusters?: Array<{
|
|
28889
|
+
__typename?: 'EntityCluster';
|
|
28890
|
+
similarity?: number | null;
|
|
28891
|
+
entities: Array<{
|
|
28892
|
+
__typename?: 'NamedEntityReference';
|
|
28893
|
+
id: string;
|
|
28894
|
+
name?: string | null;
|
|
28895
|
+
}>;
|
|
28896
|
+
}> | null;
|
|
28897
|
+
} | null;
|
|
28898
|
+
} | null;
|
|
28899
|
+
};
|
|
28452
28900
|
export type UpdateMedicalContraindicationMutationVariables = Exact<{
|
|
28453
28901
|
medicalContraindication: MedicalContraindicationUpdateInput;
|
|
28454
28902
|
}>;
|
|
@@ -28650,64 +29098,145 @@ export type QueryMedicalDevicesQuery = {
|
|
|
28650
29098
|
} | null> | null;
|
|
28651
29099
|
} | null;
|
|
28652
29100
|
};
|
|
28653
|
-
export type
|
|
28654
|
-
|
|
28655
|
-
|
|
28656
|
-
export type UpdateMedicalDeviceMutation = {
|
|
28657
|
-
__typename?: 'Mutation';
|
|
28658
|
-
updateMedicalDevice?: {
|
|
28659
|
-
__typename?: 'MedicalDevice';
|
|
28660
|
-
id: string;
|
|
28661
|
-
name: string;
|
|
28662
|
-
} | null;
|
|
28663
|
-
};
|
|
28664
|
-
export type CountMedicalDrugsQueryVariables = Exact<{
|
|
28665
|
-
filter?: InputMaybe<MedicalDrugFilter>;
|
|
29101
|
+
export type QueryMedicalDevicesClustersQueryVariables = Exact<{
|
|
29102
|
+
filter?: InputMaybe<MedicalDeviceFilter>;
|
|
29103
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
28666
29104
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
28667
29105
|
}>;
|
|
28668
|
-
export type
|
|
29106
|
+
export type QueryMedicalDevicesClustersQuery = {
|
|
28669
29107
|
__typename?: 'Query';
|
|
28670
|
-
|
|
28671
|
-
__typename?: '
|
|
28672
|
-
|
|
28673
|
-
|
|
28674
|
-
|
|
28675
|
-
|
|
28676
|
-
|
|
28677
|
-
|
|
28678
|
-
|
|
28679
|
-
|
|
28680
|
-
|
|
28681
|
-
|
|
28682
|
-
|
|
28683
|
-
|
|
28684
|
-
|
|
28685
|
-
|
|
28686
|
-
|
|
28687
|
-
|
|
28688
|
-
|
|
28689
|
-
|
|
28690
|
-
|
|
28691
|
-
|
|
28692
|
-
|
|
28693
|
-
|
|
28694
|
-
|
|
28695
|
-
|
|
28696
|
-
|
|
28697
|
-
|
|
28698
|
-
|
|
28699
|
-
|
|
28700
|
-
|
|
28701
|
-
|
|
28702
|
-
|
|
28703
|
-
|
|
28704
|
-
|
|
28705
|
-
|
|
28706
|
-
|
|
28707
|
-
|
|
28708
|
-
|
|
28709
|
-
};
|
|
28710
|
-
|
|
29108
|
+
medicalDevices?: {
|
|
29109
|
+
__typename?: 'MedicalDeviceResults';
|
|
29110
|
+
results?: Array<{
|
|
29111
|
+
__typename?: 'MedicalDevice';
|
|
29112
|
+
id: string;
|
|
29113
|
+
name: string;
|
|
29114
|
+
creationDate: any;
|
|
29115
|
+
modifiedDate?: any | null;
|
|
29116
|
+
relevance?: number | null;
|
|
29117
|
+
state: EntityState;
|
|
29118
|
+
alternateNames?: Array<string | null> | null;
|
|
29119
|
+
uri?: any | null;
|
|
29120
|
+
description?: string | null;
|
|
29121
|
+
identifier?: string | null;
|
|
29122
|
+
thing?: string | null;
|
|
29123
|
+
owner: {
|
|
29124
|
+
__typename?: 'Owner';
|
|
29125
|
+
id: string;
|
|
29126
|
+
};
|
|
29127
|
+
feeds?: Array<{
|
|
29128
|
+
__typename?: 'Feed';
|
|
29129
|
+
id: string;
|
|
29130
|
+
name: string;
|
|
29131
|
+
} | null> | null;
|
|
29132
|
+
links?: Array<{
|
|
29133
|
+
__typename?: 'LinkReference';
|
|
29134
|
+
uri?: any | null;
|
|
29135
|
+
linkType?: LinkTypes | null;
|
|
29136
|
+
excerpts?: string | null;
|
|
29137
|
+
} | null> | null;
|
|
29138
|
+
workflow?: {
|
|
29139
|
+
__typename?: 'Workflow';
|
|
29140
|
+
id: string;
|
|
29141
|
+
name: string;
|
|
29142
|
+
} | null;
|
|
29143
|
+
location?: {
|
|
29144
|
+
__typename?: 'Point';
|
|
29145
|
+
latitude?: number | null;
|
|
29146
|
+
longitude?: number | null;
|
|
29147
|
+
} | null;
|
|
29148
|
+
h3?: {
|
|
29149
|
+
__typename?: 'H3';
|
|
29150
|
+
h3r0?: string | null;
|
|
29151
|
+
h3r1?: string | null;
|
|
29152
|
+
h3r2?: string | null;
|
|
29153
|
+
h3r3?: string | null;
|
|
29154
|
+
h3r4?: string | null;
|
|
29155
|
+
h3r5?: string | null;
|
|
29156
|
+
h3r6?: string | null;
|
|
29157
|
+
h3r7?: string | null;
|
|
29158
|
+
h3r8?: string | null;
|
|
29159
|
+
h3r9?: string | null;
|
|
29160
|
+
h3r10?: string | null;
|
|
29161
|
+
h3r11?: string | null;
|
|
29162
|
+
h3r12?: string | null;
|
|
29163
|
+
h3r13?: string | null;
|
|
29164
|
+
h3r14?: string | null;
|
|
29165
|
+
h3r15?: string | null;
|
|
29166
|
+
} | null;
|
|
29167
|
+
} | null> | null;
|
|
29168
|
+
clusters?: {
|
|
29169
|
+
__typename?: 'EntityClusters';
|
|
29170
|
+
clusters?: Array<{
|
|
29171
|
+
__typename?: 'EntityCluster';
|
|
29172
|
+
similarity?: number | null;
|
|
29173
|
+
entities: Array<{
|
|
29174
|
+
__typename?: 'NamedEntityReference';
|
|
29175
|
+
id: string;
|
|
29176
|
+
name?: string | null;
|
|
29177
|
+
}>;
|
|
29178
|
+
}> | null;
|
|
29179
|
+
} | null;
|
|
29180
|
+
} | null;
|
|
29181
|
+
};
|
|
29182
|
+
export type UpdateMedicalDeviceMutationVariables = Exact<{
|
|
29183
|
+
medicalDevice: MedicalDeviceUpdateInput;
|
|
29184
|
+
}>;
|
|
29185
|
+
export type UpdateMedicalDeviceMutation = {
|
|
29186
|
+
__typename?: 'Mutation';
|
|
29187
|
+
updateMedicalDevice?: {
|
|
29188
|
+
__typename?: 'MedicalDevice';
|
|
29189
|
+
id: string;
|
|
29190
|
+
name: string;
|
|
29191
|
+
} | null;
|
|
29192
|
+
};
|
|
29193
|
+
export type CountMedicalDrugsQueryVariables = Exact<{
|
|
29194
|
+
filter?: InputMaybe<MedicalDrugFilter>;
|
|
29195
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
29196
|
+
}>;
|
|
29197
|
+
export type CountMedicalDrugsQuery = {
|
|
29198
|
+
__typename?: 'Query';
|
|
29199
|
+
countMedicalDrugs?: {
|
|
29200
|
+
__typename?: 'CountResult';
|
|
29201
|
+
count?: any | null;
|
|
29202
|
+
} | null;
|
|
29203
|
+
};
|
|
29204
|
+
export type CreateMedicalDrugMutationVariables = Exact<{
|
|
29205
|
+
medicalDrug: MedicalDrugInput;
|
|
29206
|
+
}>;
|
|
29207
|
+
export type CreateMedicalDrugMutation = {
|
|
29208
|
+
__typename?: 'Mutation';
|
|
29209
|
+
createMedicalDrug?: {
|
|
29210
|
+
__typename?: 'MedicalDrug';
|
|
29211
|
+
id: string;
|
|
29212
|
+
name: string;
|
|
29213
|
+
} | null;
|
|
29214
|
+
};
|
|
29215
|
+
export type DeleteAllMedicalDrugsMutationVariables = Exact<{
|
|
29216
|
+
filter?: InputMaybe<MedicalDrugFilter>;
|
|
29217
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29218
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
29219
|
+
}>;
|
|
29220
|
+
export type DeleteAllMedicalDrugsMutation = {
|
|
29221
|
+
__typename?: 'Mutation';
|
|
29222
|
+
deleteAllMedicalDrugs?: Array<{
|
|
29223
|
+
__typename?: 'MedicalDrug';
|
|
29224
|
+
id: string;
|
|
29225
|
+
state: EntityState;
|
|
29226
|
+
} | null> | null;
|
|
29227
|
+
};
|
|
29228
|
+
export type DeleteMedicalDrugMutationVariables = Exact<{
|
|
29229
|
+
id: Scalars['ID']['input'];
|
|
29230
|
+
}>;
|
|
29231
|
+
export type DeleteMedicalDrugMutation = {
|
|
29232
|
+
__typename?: 'Mutation';
|
|
29233
|
+
deleteMedicalDrug?: {
|
|
29234
|
+
__typename?: 'MedicalDrug';
|
|
29235
|
+
id: string;
|
|
29236
|
+
state: EntityState;
|
|
29237
|
+
} | null;
|
|
29238
|
+
};
|
|
29239
|
+
export type DeleteMedicalDrugsMutationVariables = Exact<{
|
|
28711
29240
|
ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
|
|
28712
29241
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28713
29242
|
}>;
|
|
@@ -28851,6 +29380,87 @@ export type QueryMedicalDrugsQuery = {
|
|
|
28851
29380
|
} | null> | null;
|
|
28852
29381
|
} | null;
|
|
28853
29382
|
};
|
|
29383
|
+
export type QueryMedicalDrugsClustersQueryVariables = Exact<{
|
|
29384
|
+
filter?: InputMaybe<MedicalDrugFilter>;
|
|
29385
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
29386
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
29387
|
+
}>;
|
|
29388
|
+
export type QueryMedicalDrugsClustersQuery = {
|
|
29389
|
+
__typename?: 'Query';
|
|
29390
|
+
medicalDrugs?: {
|
|
29391
|
+
__typename?: 'MedicalDrugResults';
|
|
29392
|
+
results?: Array<{
|
|
29393
|
+
__typename?: 'MedicalDrug';
|
|
29394
|
+
id: string;
|
|
29395
|
+
name: string;
|
|
29396
|
+
creationDate: any;
|
|
29397
|
+
modifiedDate?: any | null;
|
|
29398
|
+
relevance?: number | null;
|
|
29399
|
+
state: EntityState;
|
|
29400
|
+
alternateNames?: Array<string | null> | null;
|
|
29401
|
+
uri?: any | null;
|
|
29402
|
+
description?: string | null;
|
|
29403
|
+
identifier?: string | null;
|
|
29404
|
+
thing?: string | null;
|
|
29405
|
+
owner: {
|
|
29406
|
+
__typename?: 'Owner';
|
|
29407
|
+
id: string;
|
|
29408
|
+
};
|
|
29409
|
+
feeds?: Array<{
|
|
29410
|
+
__typename?: 'Feed';
|
|
29411
|
+
id: string;
|
|
29412
|
+
name: string;
|
|
29413
|
+
} | null> | null;
|
|
29414
|
+
links?: Array<{
|
|
29415
|
+
__typename?: 'LinkReference';
|
|
29416
|
+
uri?: any | null;
|
|
29417
|
+
linkType?: LinkTypes | null;
|
|
29418
|
+
excerpts?: string | null;
|
|
29419
|
+
} | null> | null;
|
|
29420
|
+
workflow?: {
|
|
29421
|
+
__typename?: 'Workflow';
|
|
29422
|
+
id: string;
|
|
29423
|
+
name: string;
|
|
29424
|
+
} | null;
|
|
29425
|
+
location?: {
|
|
29426
|
+
__typename?: 'Point';
|
|
29427
|
+
latitude?: number | null;
|
|
29428
|
+
longitude?: number | null;
|
|
29429
|
+
} | null;
|
|
29430
|
+
h3?: {
|
|
29431
|
+
__typename?: 'H3';
|
|
29432
|
+
h3r0?: string | null;
|
|
29433
|
+
h3r1?: string | null;
|
|
29434
|
+
h3r2?: string | null;
|
|
29435
|
+
h3r3?: string | null;
|
|
29436
|
+
h3r4?: string | null;
|
|
29437
|
+
h3r5?: string | null;
|
|
29438
|
+
h3r6?: string | null;
|
|
29439
|
+
h3r7?: string | null;
|
|
29440
|
+
h3r8?: string | null;
|
|
29441
|
+
h3r9?: string | null;
|
|
29442
|
+
h3r10?: string | null;
|
|
29443
|
+
h3r11?: string | null;
|
|
29444
|
+
h3r12?: string | null;
|
|
29445
|
+
h3r13?: string | null;
|
|
29446
|
+
h3r14?: string | null;
|
|
29447
|
+
h3r15?: string | null;
|
|
29448
|
+
} | null;
|
|
29449
|
+
} | null> | null;
|
|
29450
|
+
clusters?: {
|
|
29451
|
+
__typename?: 'EntityClusters';
|
|
29452
|
+
clusters?: Array<{
|
|
29453
|
+
__typename?: 'EntityCluster';
|
|
29454
|
+
similarity?: number | null;
|
|
29455
|
+
entities: Array<{
|
|
29456
|
+
__typename?: 'NamedEntityReference';
|
|
29457
|
+
id: string;
|
|
29458
|
+
name?: string | null;
|
|
29459
|
+
}>;
|
|
29460
|
+
}> | null;
|
|
29461
|
+
} | null;
|
|
29462
|
+
} | null;
|
|
29463
|
+
};
|
|
28854
29464
|
export type UpdateMedicalDrugMutationVariables = Exact<{
|
|
28855
29465
|
medicalDrug: MedicalDrugUpdateInput;
|
|
28856
29466
|
}>;
|
|
@@ -29052,6 +29662,87 @@ export type QueryMedicalDrugClassesQuery = {
|
|
|
29052
29662
|
} | null> | null;
|
|
29053
29663
|
} | null;
|
|
29054
29664
|
};
|
|
29665
|
+
export type QueryMedicalDrugClassesClustersQueryVariables = Exact<{
|
|
29666
|
+
filter?: InputMaybe<MedicalDrugClassFilter>;
|
|
29667
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
29668
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
29669
|
+
}>;
|
|
29670
|
+
export type QueryMedicalDrugClassesClustersQuery = {
|
|
29671
|
+
__typename?: 'Query';
|
|
29672
|
+
medicalDrugClasses?: {
|
|
29673
|
+
__typename?: 'MedicalDrugClassResults';
|
|
29674
|
+
results?: Array<{
|
|
29675
|
+
__typename?: 'MedicalDrugClass';
|
|
29676
|
+
id: string;
|
|
29677
|
+
name: string;
|
|
29678
|
+
creationDate: any;
|
|
29679
|
+
modifiedDate?: any | null;
|
|
29680
|
+
relevance?: number | null;
|
|
29681
|
+
state: EntityState;
|
|
29682
|
+
alternateNames?: Array<string | null> | null;
|
|
29683
|
+
uri?: any | null;
|
|
29684
|
+
description?: string | null;
|
|
29685
|
+
identifier?: string | null;
|
|
29686
|
+
thing?: string | null;
|
|
29687
|
+
owner: {
|
|
29688
|
+
__typename?: 'Owner';
|
|
29689
|
+
id: string;
|
|
29690
|
+
};
|
|
29691
|
+
feeds?: Array<{
|
|
29692
|
+
__typename?: 'Feed';
|
|
29693
|
+
id: string;
|
|
29694
|
+
name: string;
|
|
29695
|
+
} | null> | null;
|
|
29696
|
+
links?: Array<{
|
|
29697
|
+
__typename?: 'LinkReference';
|
|
29698
|
+
uri?: any | null;
|
|
29699
|
+
linkType?: LinkTypes | null;
|
|
29700
|
+
excerpts?: string | null;
|
|
29701
|
+
} | null> | null;
|
|
29702
|
+
workflow?: {
|
|
29703
|
+
__typename?: 'Workflow';
|
|
29704
|
+
id: string;
|
|
29705
|
+
name: string;
|
|
29706
|
+
} | null;
|
|
29707
|
+
location?: {
|
|
29708
|
+
__typename?: 'Point';
|
|
29709
|
+
latitude?: number | null;
|
|
29710
|
+
longitude?: number | null;
|
|
29711
|
+
} | null;
|
|
29712
|
+
h3?: {
|
|
29713
|
+
__typename?: 'H3';
|
|
29714
|
+
h3r0?: string | null;
|
|
29715
|
+
h3r1?: string | null;
|
|
29716
|
+
h3r2?: string | null;
|
|
29717
|
+
h3r3?: string | null;
|
|
29718
|
+
h3r4?: string | null;
|
|
29719
|
+
h3r5?: string | null;
|
|
29720
|
+
h3r6?: string | null;
|
|
29721
|
+
h3r7?: string | null;
|
|
29722
|
+
h3r8?: string | null;
|
|
29723
|
+
h3r9?: string | null;
|
|
29724
|
+
h3r10?: string | null;
|
|
29725
|
+
h3r11?: string | null;
|
|
29726
|
+
h3r12?: string | null;
|
|
29727
|
+
h3r13?: string | null;
|
|
29728
|
+
h3r14?: string | null;
|
|
29729
|
+
h3r15?: string | null;
|
|
29730
|
+
} | null;
|
|
29731
|
+
} | null> | null;
|
|
29732
|
+
clusters?: {
|
|
29733
|
+
__typename?: 'EntityClusters';
|
|
29734
|
+
clusters?: Array<{
|
|
29735
|
+
__typename?: 'EntityCluster';
|
|
29736
|
+
similarity?: number | null;
|
|
29737
|
+
entities: Array<{
|
|
29738
|
+
__typename?: 'NamedEntityReference';
|
|
29739
|
+
id: string;
|
|
29740
|
+
name?: string | null;
|
|
29741
|
+
}>;
|
|
29742
|
+
}> | null;
|
|
29743
|
+
} | null;
|
|
29744
|
+
} | null;
|
|
29745
|
+
};
|
|
29055
29746
|
export type UpdateMedicalDrugClassMutationVariables = Exact<{
|
|
29056
29747
|
medicalDrugClass: MedicalDrugClassUpdateInput;
|
|
29057
29748
|
}>;
|
|
@@ -29253,6 +29944,87 @@ export type QueryMedicalGuidelinesQuery = {
|
|
|
29253
29944
|
} | null> | null;
|
|
29254
29945
|
} | null;
|
|
29255
29946
|
};
|
|
29947
|
+
export type QueryMedicalGuidelinesClustersQueryVariables = Exact<{
|
|
29948
|
+
filter?: InputMaybe<MedicalGuidelineFilter>;
|
|
29949
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
29950
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
29951
|
+
}>;
|
|
29952
|
+
export type QueryMedicalGuidelinesClustersQuery = {
|
|
29953
|
+
__typename?: 'Query';
|
|
29954
|
+
medicalGuidelines?: {
|
|
29955
|
+
__typename?: 'MedicalGuidelineResults';
|
|
29956
|
+
results?: Array<{
|
|
29957
|
+
__typename?: 'MedicalGuideline';
|
|
29958
|
+
id: string;
|
|
29959
|
+
name: string;
|
|
29960
|
+
creationDate: any;
|
|
29961
|
+
modifiedDate?: any | null;
|
|
29962
|
+
relevance?: number | null;
|
|
29963
|
+
state: EntityState;
|
|
29964
|
+
alternateNames?: Array<string | null> | null;
|
|
29965
|
+
uri?: any | null;
|
|
29966
|
+
description?: string | null;
|
|
29967
|
+
identifier?: string | null;
|
|
29968
|
+
thing?: string | null;
|
|
29969
|
+
owner: {
|
|
29970
|
+
__typename?: 'Owner';
|
|
29971
|
+
id: string;
|
|
29972
|
+
};
|
|
29973
|
+
feeds?: Array<{
|
|
29974
|
+
__typename?: 'Feed';
|
|
29975
|
+
id: string;
|
|
29976
|
+
name: string;
|
|
29977
|
+
} | null> | null;
|
|
29978
|
+
links?: Array<{
|
|
29979
|
+
__typename?: 'LinkReference';
|
|
29980
|
+
uri?: any | null;
|
|
29981
|
+
linkType?: LinkTypes | null;
|
|
29982
|
+
excerpts?: string | null;
|
|
29983
|
+
} | null> | null;
|
|
29984
|
+
workflow?: {
|
|
29985
|
+
__typename?: 'Workflow';
|
|
29986
|
+
id: string;
|
|
29987
|
+
name: string;
|
|
29988
|
+
} | null;
|
|
29989
|
+
location?: {
|
|
29990
|
+
__typename?: 'Point';
|
|
29991
|
+
latitude?: number | null;
|
|
29992
|
+
longitude?: number | null;
|
|
29993
|
+
} | null;
|
|
29994
|
+
h3?: {
|
|
29995
|
+
__typename?: 'H3';
|
|
29996
|
+
h3r0?: string | null;
|
|
29997
|
+
h3r1?: string | null;
|
|
29998
|
+
h3r2?: string | null;
|
|
29999
|
+
h3r3?: string | null;
|
|
30000
|
+
h3r4?: string | null;
|
|
30001
|
+
h3r5?: string | null;
|
|
30002
|
+
h3r6?: string | null;
|
|
30003
|
+
h3r7?: string | null;
|
|
30004
|
+
h3r8?: string | null;
|
|
30005
|
+
h3r9?: string | null;
|
|
30006
|
+
h3r10?: string | null;
|
|
30007
|
+
h3r11?: string | null;
|
|
30008
|
+
h3r12?: string | null;
|
|
30009
|
+
h3r13?: string | null;
|
|
30010
|
+
h3r14?: string | null;
|
|
30011
|
+
h3r15?: string | null;
|
|
30012
|
+
} | null;
|
|
30013
|
+
} | null> | null;
|
|
30014
|
+
clusters?: {
|
|
30015
|
+
__typename?: 'EntityClusters';
|
|
30016
|
+
clusters?: Array<{
|
|
30017
|
+
__typename?: 'EntityCluster';
|
|
30018
|
+
similarity?: number | null;
|
|
30019
|
+
entities: Array<{
|
|
30020
|
+
__typename?: 'NamedEntityReference';
|
|
30021
|
+
id: string;
|
|
30022
|
+
name?: string | null;
|
|
30023
|
+
}>;
|
|
30024
|
+
}> | null;
|
|
30025
|
+
} | null;
|
|
30026
|
+
} | null;
|
|
30027
|
+
};
|
|
29256
30028
|
export type UpdateMedicalGuidelineMutationVariables = Exact<{
|
|
29257
30029
|
medicalGuideline: MedicalGuidelineUpdateInput;
|
|
29258
30030
|
}>;
|
|
@@ -29454,6 +30226,87 @@ export type QueryMedicalIndicationsQuery = {
|
|
|
29454
30226
|
} | null> | null;
|
|
29455
30227
|
} | null;
|
|
29456
30228
|
};
|
|
30229
|
+
export type QueryMedicalIndicationsClustersQueryVariables = Exact<{
|
|
30230
|
+
filter?: InputMaybe<MedicalIndicationFilter>;
|
|
30231
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
30232
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30233
|
+
}>;
|
|
30234
|
+
export type QueryMedicalIndicationsClustersQuery = {
|
|
30235
|
+
__typename?: 'Query';
|
|
30236
|
+
medicalIndications?: {
|
|
30237
|
+
__typename?: 'MedicalIndicationResults';
|
|
30238
|
+
results?: Array<{
|
|
30239
|
+
__typename?: 'MedicalIndication';
|
|
30240
|
+
id: string;
|
|
30241
|
+
name: string;
|
|
30242
|
+
creationDate: any;
|
|
30243
|
+
modifiedDate?: any | null;
|
|
30244
|
+
relevance?: number | null;
|
|
30245
|
+
state: EntityState;
|
|
30246
|
+
alternateNames?: Array<string | null> | null;
|
|
30247
|
+
uri?: any | null;
|
|
30248
|
+
description?: string | null;
|
|
30249
|
+
identifier?: string | null;
|
|
30250
|
+
thing?: string | null;
|
|
30251
|
+
owner: {
|
|
30252
|
+
__typename?: 'Owner';
|
|
30253
|
+
id: string;
|
|
30254
|
+
};
|
|
30255
|
+
feeds?: Array<{
|
|
30256
|
+
__typename?: 'Feed';
|
|
30257
|
+
id: string;
|
|
30258
|
+
name: string;
|
|
30259
|
+
} | null> | null;
|
|
30260
|
+
links?: Array<{
|
|
30261
|
+
__typename?: 'LinkReference';
|
|
30262
|
+
uri?: any | null;
|
|
30263
|
+
linkType?: LinkTypes | null;
|
|
30264
|
+
excerpts?: string | null;
|
|
30265
|
+
} | null> | null;
|
|
30266
|
+
workflow?: {
|
|
30267
|
+
__typename?: 'Workflow';
|
|
30268
|
+
id: string;
|
|
30269
|
+
name: string;
|
|
30270
|
+
} | null;
|
|
30271
|
+
location?: {
|
|
30272
|
+
__typename?: 'Point';
|
|
30273
|
+
latitude?: number | null;
|
|
30274
|
+
longitude?: number | null;
|
|
30275
|
+
} | null;
|
|
30276
|
+
h3?: {
|
|
30277
|
+
__typename?: 'H3';
|
|
30278
|
+
h3r0?: string | null;
|
|
30279
|
+
h3r1?: string | null;
|
|
30280
|
+
h3r2?: string | null;
|
|
30281
|
+
h3r3?: string | null;
|
|
30282
|
+
h3r4?: string | null;
|
|
30283
|
+
h3r5?: string | null;
|
|
30284
|
+
h3r6?: string | null;
|
|
30285
|
+
h3r7?: string | null;
|
|
30286
|
+
h3r8?: string | null;
|
|
30287
|
+
h3r9?: string | null;
|
|
30288
|
+
h3r10?: string | null;
|
|
30289
|
+
h3r11?: string | null;
|
|
30290
|
+
h3r12?: string | null;
|
|
30291
|
+
h3r13?: string | null;
|
|
30292
|
+
h3r14?: string | null;
|
|
30293
|
+
h3r15?: string | null;
|
|
30294
|
+
} | null;
|
|
30295
|
+
} | null> | null;
|
|
30296
|
+
clusters?: {
|
|
30297
|
+
__typename?: 'EntityClusters';
|
|
30298
|
+
clusters?: Array<{
|
|
30299
|
+
__typename?: 'EntityCluster';
|
|
30300
|
+
similarity?: number | null;
|
|
30301
|
+
entities: Array<{
|
|
30302
|
+
__typename?: 'NamedEntityReference';
|
|
30303
|
+
id: string;
|
|
30304
|
+
name?: string | null;
|
|
30305
|
+
}>;
|
|
30306
|
+
}> | null;
|
|
30307
|
+
} | null;
|
|
30308
|
+
} | null;
|
|
30309
|
+
};
|
|
29457
30310
|
export type UpdateMedicalIndicationMutationVariables = Exact<{
|
|
29458
30311
|
medicalIndication: MedicalIndicationUpdateInput;
|
|
29459
30312
|
}>;
|
|
@@ -29556,42 +30409,111 @@ export type GetMedicalProcedureQuery = {
|
|
|
29556
30409
|
linkType?: LinkTypes | null;
|
|
29557
30410
|
excerpts?: string | null;
|
|
29558
30411
|
} | null> | null;
|
|
29559
|
-
workflow?: {
|
|
29560
|
-
__typename?: 'Workflow';
|
|
29561
|
-
id: string;
|
|
29562
|
-
name: string;
|
|
29563
|
-
} | null;
|
|
29564
|
-
location?: {
|
|
29565
|
-
__typename?: 'Point';
|
|
29566
|
-
latitude?: number | null;
|
|
29567
|
-
longitude?: number | null;
|
|
29568
|
-
} | null;
|
|
29569
|
-
h3?: {
|
|
29570
|
-
__typename?: 'H3';
|
|
29571
|
-
h3r0?: string | null;
|
|
29572
|
-
h3r1?: string | null;
|
|
29573
|
-
h3r2?: string | null;
|
|
29574
|
-
h3r3?: string | null;
|
|
29575
|
-
h3r4?: string | null;
|
|
29576
|
-
h3r5?: string | null;
|
|
29577
|
-
h3r6?: string | null;
|
|
29578
|
-
h3r7?: string | null;
|
|
29579
|
-
h3r8?: string | null;
|
|
29580
|
-
h3r9?: string | null;
|
|
29581
|
-
h3r10?: string | null;
|
|
29582
|
-
h3r11?: string | null;
|
|
29583
|
-
h3r12?: string | null;
|
|
29584
|
-
h3r13?: string | null;
|
|
29585
|
-
h3r14?: string | null;
|
|
29586
|
-
h3r15?: string | null;
|
|
29587
|
-
} | null;
|
|
30412
|
+
workflow?: {
|
|
30413
|
+
__typename?: 'Workflow';
|
|
30414
|
+
id: string;
|
|
30415
|
+
name: string;
|
|
30416
|
+
} | null;
|
|
30417
|
+
location?: {
|
|
30418
|
+
__typename?: 'Point';
|
|
30419
|
+
latitude?: number | null;
|
|
30420
|
+
longitude?: number | null;
|
|
30421
|
+
} | null;
|
|
30422
|
+
h3?: {
|
|
30423
|
+
__typename?: 'H3';
|
|
30424
|
+
h3r0?: string | null;
|
|
30425
|
+
h3r1?: string | null;
|
|
30426
|
+
h3r2?: string | null;
|
|
30427
|
+
h3r3?: string | null;
|
|
30428
|
+
h3r4?: string | null;
|
|
30429
|
+
h3r5?: string | null;
|
|
30430
|
+
h3r6?: string | null;
|
|
30431
|
+
h3r7?: string | null;
|
|
30432
|
+
h3r8?: string | null;
|
|
30433
|
+
h3r9?: string | null;
|
|
30434
|
+
h3r10?: string | null;
|
|
30435
|
+
h3r11?: string | null;
|
|
30436
|
+
h3r12?: string | null;
|
|
30437
|
+
h3r13?: string | null;
|
|
30438
|
+
h3r14?: string | null;
|
|
30439
|
+
h3r15?: string | null;
|
|
30440
|
+
} | null;
|
|
30441
|
+
} | null;
|
|
30442
|
+
};
|
|
30443
|
+
export type QueryMedicalProceduresQueryVariables = Exact<{
|
|
30444
|
+
filter?: InputMaybe<MedicalProcedureFilter>;
|
|
30445
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30446
|
+
}>;
|
|
30447
|
+
export type QueryMedicalProceduresQuery = {
|
|
30448
|
+
__typename?: 'Query';
|
|
30449
|
+
medicalProcedures?: {
|
|
30450
|
+
__typename?: 'MedicalProcedureResults';
|
|
30451
|
+
results?: Array<{
|
|
30452
|
+
__typename?: 'MedicalProcedure';
|
|
30453
|
+
id: string;
|
|
30454
|
+
name: string;
|
|
30455
|
+
creationDate: any;
|
|
30456
|
+
modifiedDate?: any | null;
|
|
30457
|
+
relevance?: number | null;
|
|
30458
|
+
state: EntityState;
|
|
30459
|
+
alternateNames?: Array<string | null> | null;
|
|
30460
|
+
uri?: any | null;
|
|
30461
|
+
description?: string | null;
|
|
30462
|
+
identifier?: string | null;
|
|
30463
|
+
thing?: string | null;
|
|
30464
|
+
owner: {
|
|
30465
|
+
__typename?: 'Owner';
|
|
30466
|
+
id: string;
|
|
30467
|
+
};
|
|
30468
|
+
feeds?: Array<{
|
|
30469
|
+
__typename?: 'Feed';
|
|
30470
|
+
id: string;
|
|
30471
|
+
name: string;
|
|
30472
|
+
} | null> | null;
|
|
30473
|
+
links?: Array<{
|
|
30474
|
+
__typename?: 'LinkReference';
|
|
30475
|
+
uri?: any | null;
|
|
30476
|
+
linkType?: LinkTypes | null;
|
|
30477
|
+
excerpts?: string | null;
|
|
30478
|
+
} | null> | null;
|
|
30479
|
+
workflow?: {
|
|
30480
|
+
__typename?: 'Workflow';
|
|
30481
|
+
id: string;
|
|
30482
|
+
name: string;
|
|
30483
|
+
} | null;
|
|
30484
|
+
location?: {
|
|
30485
|
+
__typename?: 'Point';
|
|
30486
|
+
latitude?: number | null;
|
|
30487
|
+
longitude?: number | null;
|
|
30488
|
+
} | null;
|
|
30489
|
+
h3?: {
|
|
30490
|
+
__typename?: 'H3';
|
|
30491
|
+
h3r0?: string | null;
|
|
30492
|
+
h3r1?: string | null;
|
|
30493
|
+
h3r2?: string | null;
|
|
30494
|
+
h3r3?: string | null;
|
|
30495
|
+
h3r4?: string | null;
|
|
30496
|
+
h3r5?: string | null;
|
|
30497
|
+
h3r6?: string | null;
|
|
30498
|
+
h3r7?: string | null;
|
|
30499
|
+
h3r8?: string | null;
|
|
30500
|
+
h3r9?: string | null;
|
|
30501
|
+
h3r10?: string | null;
|
|
30502
|
+
h3r11?: string | null;
|
|
30503
|
+
h3r12?: string | null;
|
|
30504
|
+
h3r13?: string | null;
|
|
30505
|
+
h3r14?: string | null;
|
|
30506
|
+
h3r15?: string | null;
|
|
30507
|
+
} | null;
|
|
30508
|
+
} | null> | null;
|
|
29588
30509
|
} | null;
|
|
29589
30510
|
};
|
|
29590
|
-
export type
|
|
30511
|
+
export type QueryMedicalProceduresClustersQueryVariables = Exact<{
|
|
29591
30512
|
filter?: InputMaybe<MedicalProcedureFilter>;
|
|
30513
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
29592
30514
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
29593
30515
|
}>;
|
|
29594
|
-
export type
|
|
30516
|
+
export type QueryMedicalProceduresClustersQuery = {
|
|
29595
30517
|
__typename?: 'Query';
|
|
29596
30518
|
medicalProcedures?: {
|
|
29597
30519
|
__typename?: 'MedicalProcedureResults';
|
|
@@ -29653,6 +30575,18 @@ export type QueryMedicalProceduresQuery = {
|
|
|
29653
30575
|
h3r15?: string | null;
|
|
29654
30576
|
} | null;
|
|
29655
30577
|
} | null> | null;
|
|
30578
|
+
clusters?: {
|
|
30579
|
+
__typename?: 'EntityClusters';
|
|
30580
|
+
clusters?: Array<{
|
|
30581
|
+
__typename?: 'EntityCluster';
|
|
30582
|
+
similarity?: number | null;
|
|
30583
|
+
entities: Array<{
|
|
30584
|
+
__typename?: 'NamedEntityReference';
|
|
30585
|
+
id: string;
|
|
30586
|
+
name?: string | null;
|
|
30587
|
+
}>;
|
|
30588
|
+
}> | null;
|
|
30589
|
+
} | null;
|
|
29656
30590
|
} | null;
|
|
29657
30591
|
};
|
|
29658
30592
|
export type UpdateMedicalProcedureMutationVariables = Exact<{
|
|
@@ -29872,6 +30806,95 @@ export type QueryMedicalStudiesQuery = {
|
|
|
29872
30806
|
} | null> | null;
|
|
29873
30807
|
} | null;
|
|
29874
30808
|
};
|
|
30809
|
+
export type QueryMedicalStudiesClustersQueryVariables = Exact<{
|
|
30810
|
+
filter?: InputMaybe<MedicalStudyFilter>;
|
|
30811
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
30812
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30813
|
+
}>;
|
|
30814
|
+
export type QueryMedicalStudiesClustersQuery = {
|
|
30815
|
+
__typename?: 'Query';
|
|
30816
|
+
medicalStudies?: {
|
|
30817
|
+
__typename?: 'MedicalStudyResults';
|
|
30818
|
+
results?: Array<{
|
|
30819
|
+
__typename?: 'MedicalStudy';
|
|
30820
|
+
id: string;
|
|
30821
|
+
name: string;
|
|
30822
|
+
creationDate: any;
|
|
30823
|
+
modifiedDate?: any | null;
|
|
30824
|
+
relevance?: number | null;
|
|
30825
|
+
state: EntityState;
|
|
30826
|
+
alternateNames?: Array<string | null> | null;
|
|
30827
|
+
uri?: any | null;
|
|
30828
|
+
description?: string | null;
|
|
30829
|
+
identifier?: string | null;
|
|
30830
|
+
thing?: string | null;
|
|
30831
|
+
owner: {
|
|
30832
|
+
__typename?: 'Owner';
|
|
30833
|
+
id: string;
|
|
30834
|
+
};
|
|
30835
|
+
feeds?: Array<{
|
|
30836
|
+
__typename?: 'Feed';
|
|
30837
|
+
id: string;
|
|
30838
|
+
name: string;
|
|
30839
|
+
} | null> | null;
|
|
30840
|
+
links?: Array<{
|
|
30841
|
+
__typename?: 'LinkReference';
|
|
30842
|
+
uri?: any | null;
|
|
30843
|
+
linkType?: LinkTypes | null;
|
|
30844
|
+
excerpts?: string | null;
|
|
30845
|
+
} | null> | null;
|
|
30846
|
+
workflow?: {
|
|
30847
|
+
__typename?: 'Workflow';
|
|
30848
|
+
id: string;
|
|
30849
|
+
name: string;
|
|
30850
|
+
} | null;
|
|
30851
|
+
location?: {
|
|
30852
|
+
__typename?: 'Point';
|
|
30853
|
+
latitude?: number | null;
|
|
30854
|
+
longitude?: number | null;
|
|
30855
|
+
} | null;
|
|
30856
|
+
h3?: {
|
|
30857
|
+
__typename?: 'H3';
|
|
30858
|
+
h3r0?: string | null;
|
|
30859
|
+
h3r1?: string | null;
|
|
30860
|
+
h3r2?: string | null;
|
|
30861
|
+
h3r3?: string | null;
|
|
30862
|
+
h3r4?: string | null;
|
|
30863
|
+
h3r5?: string | null;
|
|
30864
|
+
h3r6?: string | null;
|
|
30865
|
+
h3r7?: string | null;
|
|
30866
|
+
h3r8?: string | null;
|
|
30867
|
+
h3r9?: string | null;
|
|
30868
|
+
h3r10?: string | null;
|
|
30869
|
+
h3r11?: string | null;
|
|
30870
|
+
h3r12?: string | null;
|
|
30871
|
+
h3r13?: string | null;
|
|
30872
|
+
h3r14?: string | null;
|
|
30873
|
+
h3r15?: string | null;
|
|
30874
|
+
} | null;
|
|
30875
|
+
address?: {
|
|
30876
|
+
__typename?: 'Address';
|
|
30877
|
+
streetAddress?: string | null;
|
|
30878
|
+
city?: string | null;
|
|
30879
|
+
region?: string | null;
|
|
30880
|
+
country?: string | null;
|
|
30881
|
+
postalCode?: string | null;
|
|
30882
|
+
} | null;
|
|
30883
|
+
} | null> | null;
|
|
30884
|
+
clusters?: {
|
|
30885
|
+
__typename?: 'EntityClusters';
|
|
30886
|
+
clusters?: Array<{
|
|
30887
|
+
__typename?: 'EntityCluster';
|
|
30888
|
+
similarity?: number | null;
|
|
30889
|
+
entities: Array<{
|
|
30890
|
+
__typename?: 'NamedEntityReference';
|
|
30891
|
+
id: string;
|
|
30892
|
+
name?: string | null;
|
|
30893
|
+
}>;
|
|
30894
|
+
}> | null;
|
|
30895
|
+
} | null;
|
|
30896
|
+
} | null;
|
|
30897
|
+
};
|
|
29875
30898
|
export type UpdateMedicalStudyMutationVariables = Exact<{
|
|
29876
30899
|
medicalStudy: MedicalStudyUpdateInput;
|
|
29877
30900
|
}>;
|
|
@@ -30073,6 +31096,87 @@ export type QueryMedicalTestsQuery = {
|
|
|
30073
31096
|
} | null> | null;
|
|
30074
31097
|
} | null;
|
|
30075
31098
|
};
|
|
31099
|
+
export type QueryMedicalTestsClustersQueryVariables = Exact<{
|
|
31100
|
+
filter?: InputMaybe<MedicalTestFilter>;
|
|
31101
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
31102
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
31103
|
+
}>;
|
|
31104
|
+
export type QueryMedicalTestsClustersQuery = {
|
|
31105
|
+
__typename?: 'Query';
|
|
31106
|
+
medicalTests?: {
|
|
31107
|
+
__typename?: 'MedicalTestResults';
|
|
31108
|
+
results?: Array<{
|
|
31109
|
+
__typename?: 'MedicalTest';
|
|
31110
|
+
id: string;
|
|
31111
|
+
name: string;
|
|
31112
|
+
creationDate: any;
|
|
31113
|
+
modifiedDate?: any | null;
|
|
31114
|
+
relevance?: number | null;
|
|
31115
|
+
state: EntityState;
|
|
31116
|
+
alternateNames?: Array<string | null> | null;
|
|
31117
|
+
uri?: any | null;
|
|
31118
|
+
description?: string | null;
|
|
31119
|
+
identifier?: string | null;
|
|
31120
|
+
thing?: string | null;
|
|
31121
|
+
owner: {
|
|
31122
|
+
__typename?: 'Owner';
|
|
31123
|
+
id: string;
|
|
31124
|
+
};
|
|
31125
|
+
feeds?: Array<{
|
|
31126
|
+
__typename?: 'Feed';
|
|
31127
|
+
id: string;
|
|
31128
|
+
name: string;
|
|
31129
|
+
} | null> | null;
|
|
31130
|
+
links?: Array<{
|
|
31131
|
+
__typename?: 'LinkReference';
|
|
31132
|
+
uri?: any | null;
|
|
31133
|
+
linkType?: LinkTypes | null;
|
|
31134
|
+
excerpts?: string | null;
|
|
31135
|
+
} | null> | null;
|
|
31136
|
+
workflow?: {
|
|
31137
|
+
__typename?: 'Workflow';
|
|
31138
|
+
id: string;
|
|
31139
|
+
name: string;
|
|
31140
|
+
} | null;
|
|
31141
|
+
location?: {
|
|
31142
|
+
__typename?: 'Point';
|
|
31143
|
+
latitude?: number | null;
|
|
31144
|
+
longitude?: number | null;
|
|
31145
|
+
} | null;
|
|
31146
|
+
h3?: {
|
|
31147
|
+
__typename?: 'H3';
|
|
31148
|
+
h3r0?: string | null;
|
|
31149
|
+
h3r1?: string | null;
|
|
31150
|
+
h3r2?: string | null;
|
|
31151
|
+
h3r3?: string | null;
|
|
31152
|
+
h3r4?: string | null;
|
|
31153
|
+
h3r5?: string | null;
|
|
31154
|
+
h3r6?: string | null;
|
|
31155
|
+
h3r7?: string | null;
|
|
31156
|
+
h3r8?: string | null;
|
|
31157
|
+
h3r9?: string | null;
|
|
31158
|
+
h3r10?: string | null;
|
|
31159
|
+
h3r11?: string | null;
|
|
31160
|
+
h3r12?: string | null;
|
|
31161
|
+
h3r13?: string | null;
|
|
31162
|
+
h3r14?: string | null;
|
|
31163
|
+
h3r15?: string | null;
|
|
31164
|
+
} | null;
|
|
31165
|
+
} | null> | null;
|
|
31166
|
+
clusters?: {
|
|
31167
|
+
__typename?: 'EntityClusters';
|
|
31168
|
+
clusters?: Array<{
|
|
31169
|
+
__typename?: 'EntityCluster';
|
|
31170
|
+
similarity?: number | null;
|
|
31171
|
+
entities: Array<{
|
|
31172
|
+
__typename?: 'NamedEntityReference';
|
|
31173
|
+
id: string;
|
|
31174
|
+
name?: string | null;
|
|
31175
|
+
}>;
|
|
31176
|
+
}> | null;
|
|
31177
|
+
} | null;
|
|
31178
|
+
} | null;
|
|
31179
|
+
};
|
|
30076
31180
|
export type UpdateMedicalTestMutationVariables = Exact<{
|
|
30077
31181
|
medicalTest: MedicalTestUpdateInput;
|
|
30078
31182
|
}>;
|
|
@@ -30206,11 +31310,80 @@ export type GetMedicalTherapyQuery = {
|
|
|
30206
31310
|
} | null;
|
|
30207
31311
|
} | null;
|
|
30208
31312
|
};
|
|
30209
|
-
export type QueryMedicalTherapiesQueryVariables = Exact<{
|
|
31313
|
+
export type QueryMedicalTherapiesQueryVariables = Exact<{
|
|
31314
|
+
filter?: InputMaybe<MedicalTherapyFilter>;
|
|
31315
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
31316
|
+
}>;
|
|
31317
|
+
export type QueryMedicalTherapiesQuery = {
|
|
31318
|
+
__typename?: 'Query';
|
|
31319
|
+
medicalTherapies?: {
|
|
31320
|
+
__typename?: 'MedicalTherapyResults';
|
|
31321
|
+
results?: Array<{
|
|
31322
|
+
__typename?: 'MedicalTherapy';
|
|
31323
|
+
id: string;
|
|
31324
|
+
name: string;
|
|
31325
|
+
creationDate: any;
|
|
31326
|
+
modifiedDate?: any | null;
|
|
31327
|
+
relevance?: number | null;
|
|
31328
|
+
state: EntityState;
|
|
31329
|
+
alternateNames?: Array<string | null> | null;
|
|
31330
|
+
uri?: any | null;
|
|
31331
|
+
description?: string | null;
|
|
31332
|
+
identifier?: string | null;
|
|
31333
|
+
thing?: string | null;
|
|
31334
|
+
owner: {
|
|
31335
|
+
__typename?: 'Owner';
|
|
31336
|
+
id: string;
|
|
31337
|
+
};
|
|
31338
|
+
feeds?: Array<{
|
|
31339
|
+
__typename?: 'Feed';
|
|
31340
|
+
id: string;
|
|
31341
|
+
name: string;
|
|
31342
|
+
} | null> | null;
|
|
31343
|
+
links?: Array<{
|
|
31344
|
+
__typename?: 'LinkReference';
|
|
31345
|
+
uri?: any | null;
|
|
31346
|
+
linkType?: LinkTypes | null;
|
|
31347
|
+
excerpts?: string | null;
|
|
31348
|
+
} | null> | null;
|
|
31349
|
+
workflow?: {
|
|
31350
|
+
__typename?: 'Workflow';
|
|
31351
|
+
id: string;
|
|
31352
|
+
name: string;
|
|
31353
|
+
} | null;
|
|
31354
|
+
location?: {
|
|
31355
|
+
__typename?: 'Point';
|
|
31356
|
+
latitude?: number | null;
|
|
31357
|
+
longitude?: number | null;
|
|
31358
|
+
} | null;
|
|
31359
|
+
h3?: {
|
|
31360
|
+
__typename?: 'H3';
|
|
31361
|
+
h3r0?: string | null;
|
|
31362
|
+
h3r1?: string | null;
|
|
31363
|
+
h3r2?: string | null;
|
|
31364
|
+
h3r3?: string | null;
|
|
31365
|
+
h3r4?: string | null;
|
|
31366
|
+
h3r5?: string | null;
|
|
31367
|
+
h3r6?: string | null;
|
|
31368
|
+
h3r7?: string | null;
|
|
31369
|
+
h3r8?: string | null;
|
|
31370
|
+
h3r9?: string | null;
|
|
31371
|
+
h3r10?: string | null;
|
|
31372
|
+
h3r11?: string | null;
|
|
31373
|
+
h3r12?: string | null;
|
|
31374
|
+
h3r13?: string | null;
|
|
31375
|
+
h3r14?: string | null;
|
|
31376
|
+
h3r15?: string | null;
|
|
31377
|
+
} | null;
|
|
31378
|
+
} | null> | null;
|
|
31379
|
+
} | null;
|
|
31380
|
+
};
|
|
31381
|
+
export type QueryMedicalTherapiesClustersQueryVariables = Exact<{
|
|
30210
31382
|
filter?: InputMaybe<MedicalTherapyFilter>;
|
|
31383
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
30211
31384
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
30212
31385
|
}>;
|
|
30213
|
-
export type
|
|
31386
|
+
export type QueryMedicalTherapiesClustersQuery = {
|
|
30214
31387
|
__typename?: 'Query';
|
|
30215
31388
|
medicalTherapies?: {
|
|
30216
31389
|
__typename?: 'MedicalTherapyResults';
|
|
@@ -30272,6 +31445,18 @@ export type QueryMedicalTherapiesQuery = {
|
|
|
30272
31445
|
h3r15?: string | null;
|
|
30273
31446
|
} | null;
|
|
30274
31447
|
} | null> | null;
|
|
31448
|
+
clusters?: {
|
|
31449
|
+
__typename?: 'EntityClusters';
|
|
31450
|
+
clusters?: Array<{
|
|
31451
|
+
__typename?: 'EntityCluster';
|
|
31452
|
+
similarity?: number | null;
|
|
31453
|
+
entities: Array<{
|
|
31454
|
+
__typename?: 'NamedEntityReference';
|
|
31455
|
+
id: string;
|
|
31456
|
+
name?: string | null;
|
|
31457
|
+
}>;
|
|
31458
|
+
}> | null;
|
|
31459
|
+
} | null;
|
|
30275
31460
|
} | null;
|
|
30276
31461
|
};
|
|
30277
31462
|
export type UpdateMedicalTherapyMutationVariables = Exact<{
|
|
@@ -30701,6 +31886,104 @@ export type QueryOrganizationsQuery = {
|
|
|
30701
31886
|
} | null> | null;
|
|
30702
31887
|
} | null;
|
|
30703
31888
|
};
|
|
31889
|
+
export type QueryOrganizationsClustersQueryVariables = Exact<{
|
|
31890
|
+
filter?: InputMaybe<OrganizationFilter>;
|
|
31891
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
31892
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
31893
|
+
}>;
|
|
31894
|
+
export type QueryOrganizationsClustersQuery = {
|
|
31895
|
+
__typename?: 'Query';
|
|
31896
|
+
organizations?: {
|
|
31897
|
+
__typename?: 'OrganizationResults';
|
|
31898
|
+
results?: Array<{
|
|
31899
|
+
__typename?: 'Organization';
|
|
31900
|
+
id: string;
|
|
31901
|
+
name: string;
|
|
31902
|
+
creationDate: any;
|
|
31903
|
+
modifiedDate?: any | null;
|
|
31904
|
+
relevance?: number | null;
|
|
31905
|
+
state: EntityState;
|
|
31906
|
+
alternateNames?: Array<string | null> | null;
|
|
31907
|
+
uri?: any | null;
|
|
31908
|
+
description?: string | null;
|
|
31909
|
+
identifier?: string | null;
|
|
31910
|
+
thing?: string | null;
|
|
31911
|
+
foundingDate?: any | null;
|
|
31912
|
+
email?: string | null;
|
|
31913
|
+
telephone?: string | null;
|
|
31914
|
+
legalName?: string | null;
|
|
31915
|
+
industries?: Array<string | null> | null;
|
|
31916
|
+
revenue?: any | null;
|
|
31917
|
+
revenueCurrency?: string | null;
|
|
31918
|
+
investment?: any | null;
|
|
31919
|
+
investmentCurrency?: string | null;
|
|
31920
|
+
owner: {
|
|
31921
|
+
__typename?: 'Owner';
|
|
31922
|
+
id: string;
|
|
31923
|
+
};
|
|
31924
|
+
feeds?: Array<{
|
|
31925
|
+
__typename?: 'Feed';
|
|
31926
|
+
id: string;
|
|
31927
|
+
name: string;
|
|
31928
|
+
} | null> | null;
|
|
31929
|
+
links?: Array<{
|
|
31930
|
+
__typename?: 'LinkReference';
|
|
31931
|
+
uri?: any | null;
|
|
31932
|
+
linkType?: LinkTypes | null;
|
|
31933
|
+
excerpts?: string | null;
|
|
31934
|
+
} | null> | null;
|
|
31935
|
+
workflow?: {
|
|
31936
|
+
__typename?: 'Workflow';
|
|
31937
|
+
id: string;
|
|
31938
|
+
name: string;
|
|
31939
|
+
} | null;
|
|
31940
|
+
location?: {
|
|
31941
|
+
__typename?: 'Point';
|
|
31942
|
+
latitude?: number | null;
|
|
31943
|
+
longitude?: number | null;
|
|
31944
|
+
} | null;
|
|
31945
|
+
h3?: {
|
|
31946
|
+
__typename?: 'H3';
|
|
31947
|
+
h3r0?: string | null;
|
|
31948
|
+
h3r1?: string | null;
|
|
31949
|
+
h3r2?: string | null;
|
|
31950
|
+
h3r3?: string | null;
|
|
31951
|
+
h3r4?: string | null;
|
|
31952
|
+
h3r5?: string | null;
|
|
31953
|
+
h3r6?: string | null;
|
|
31954
|
+
h3r7?: string | null;
|
|
31955
|
+
h3r8?: string | null;
|
|
31956
|
+
h3r9?: string | null;
|
|
31957
|
+
h3r10?: string | null;
|
|
31958
|
+
h3r11?: string | null;
|
|
31959
|
+
h3r12?: string | null;
|
|
31960
|
+
h3r13?: string | null;
|
|
31961
|
+
h3r14?: string | null;
|
|
31962
|
+
h3r15?: string | null;
|
|
31963
|
+
} | null;
|
|
31964
|
+
address?: {
|
|
31965
|
+
__typename?: 'Address';
|
|
31966
|
+
streetAddress?: string | null;
|
|
31967
|
+
city?: string | null;
|
|
31968
|
+
region?: string | null;
|
|
31969
|
+
country?: string | null;
|
|
31970
|
+
postalCode?: string | null;
|
|
31971
|
+
} | null;
|
|
31972
|
+
} | null> | null;
|
|
31973
|
+
clusters?: {
|
|
31974
|
+
__typename?: 'EntityClusters';
|
|
31975
|
+
clusters?: Array<{
|
|
31976
|
+
__typename?: 'EntityCluster';
|
|
31977
|
+
similarity?: number | null;
|
|
31978
|
+
entities: Array<{
|
|
31979
|
+
__typename?: 'NamedEntityReference';
|
|
31980
|
+
id: string;
|
|
31981
|
+
name?: string | null;
|
|
31982
|
+
}>;
|
|
31983
|
+
}> | null;
|
|
31984
|
+
} | null;
|
|
31985
|
+
} | null;
|
|
31986
|
+
};
|
|
30704
31987
|
export type QueryOrganizationsExpandedQueryVariables = Exact<{
|
|
30705
31988
|
filter?: InputMaybe<OrganizationFilter>;
|
|
30706
31989
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31117,6 +32400,103 @@ export type QueryPersonsQuery = {
|
|
|
31117
32400
|
} | null> | null;
|
|
31118
32401
|
} | null;
|
|
31119
32402
|
};
|
|
32403
|
+
export type QueryPersonsClustersQueryVariables = Exact<{
|
|
32404
|
+
filter?: InputMaybe<PersonFilter>;
|
|
32405
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
32406
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
32407
|
+
}>;
|
|
32408
|
+
export type QueryPersonsClustersQuery = {
|
|
32409
|
+
__typename?: 'Query';
|
|
32410
|
+
persons?: {
|
|
32411
|
+
__typename?: 'PersonResults';
|
|
32412
|
+
results?: Array<{
|
|
32413
|
+
__typename?: 'Person';
|
|
32414
|
+
id: string;
|
|
32415
|
+
name: string;
|
|
32416
|
+
creationDate: any;
|
|
32417
|
+
modifiedDate?: any | null;
|
|
32418
|
+
relevance?: number | null;
|
|
32419
|
+
state: EntityState;
|
|
32420
|
+
alternateNames?: Array<string | null> | null;
|
|
32421
|
+
uri?: any | null;
|
|
32422
|
+
description?: string | null;
|
|
32423
|
+
identifier?: string | null;
|
|
32424
|
+
thing?: string | null;
|
|
32425
|
+
email?: string | null;
|
|
32426
|
+
givenName?: string | null;
|
|
32427
|
+
familyName?: string | null;
|
|
32428
|
+
phoneNumber?: string | null;
|
|
32429
|
+
birthDate?: any | null;
|
|
32430
|
+
title?: string | null;
|
|
32431
|
+
occupation?: string | null;
|
|
32432
|
+
education?: string | null;
|
|
32433
|
+
owner: {
|
|
32434
|
+
__typename?: 'Owner';
|
|
32435
|
+
id: string;
|
|
32436
|
+
};
|
|
32437
|
+
feeds?: Array<{
|
|
32438
|
+
__typename?: 'Feed';
|
|
32439
|
+
id: string;
|
|
32440
|
+
name: string;
|
|
32441
|
+
} | null> | null;
|
|
32442
|
+
links?: Array<{
|
|
32443
|
+
__typename?: 'LinkReference';
|
|
32444
|
+
uri?: any | null;
|
|
32445
|
+
linkType?: LinkTypes | null;
|
|
32446
|
+
excerpts?: string | null;
|
|
32447
|
+
} | null> | null;
|
|
32448
|
+
workflow?: {
|
|
32449
|
+
__typename?: 'Workflow';
|
|
32450
|
+
id: string;
|
|
32451
|
+
name: string;
|
|
32452
|
+
} | null;
|
|
32453
|
+
location?: {
|
|
32454
|
+
__typename?: 'Point';
|
|
32455
|
+
latitude?: number | null;
|
|
32456
|
+
longitude?: number | null;
|
|
32457
|
+
} | null;
|
|
32458
|
+
h3?: {
|
|
32459
|
+
__typename?: 'H3';
|
|
32460
|
+
h3r0?: string | null;
|
|
32461
|
+
h3r1?: string | null;
|
|
32462
|
+
h3r2?: string | null;
|
|
32463
|
+
h3r3?: string | null;
|
|
32464
|
+
h3r4?: string | null;
|
|
32465
|
+
h3r5?: string | null;
|
|
32466
|
+
h3r6?: string | null;
|
|
32467
|
+
h3r7?: string | null;
|
|
32468
|
+
h3r8?: string | null;
|
|
32469
|
+
h3r9?: string | null;
|
|
32470
|
+
h3r10?: string | null;
|
|
32471
|
+
h3r11?: string | null;
|
|
32472
|
+
h3r12?: string | null;
|
|
32473
|
+
h3r13?: string | null;
|
|
32474
|
+
h3r14?: string | null;
|
|
32475
|
+
h3r15?: string | null;
|
|
32476
|
+
} | null;
|
|
32477
|
+
address?: {
|
|
32478
|
+
__typename?: 'Address';
|
|
32479
|
+
streetAddress?: string | null;
|
|
32480
|
+
city?: string | null;
|
|
32481
|
+
region?: string | null;
|
|
32482
|
+
country?: string | null;
|
|
32483
|
+
postalCode?: string | null;
|
|
32484
|
+
} | null;
|
|
32485
|
+
} | null> | null;
|
|
32486
|
+
clusters?: {
|
|
32487
|
+
__typename?: 'EntityClusters';
|
|
32488
|
+
clusters?: Array<{
|
|
32489
|
+
__typename?: 'EntityCluster';
|
|
32490
|
+
similarity?: number | null;
|
|
32491
|
+
entities: Array<{
|
|
32492
|
+
__typename?: 'NamedEntityReference';
|
|
32493
|
+
id: string;
|
|
32494
|
+
name?: string | null;
|
|
32495
|
+
}>;
|
|
32496
|
+
}> | null;
|
|
32497
|
+
} | null;
|
|
32498
|
+
} | null;
|
|
32499
|
+
};
|
|
31120
32500
|
export type QueryPersonsExpandedQueryVariables = Exact<{
|
|
31121
32501
|
filter?: InputMaybe<PersonFilter>;
|
|
31122
32502
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31398,11 +32778,91 @@ export type GetPlaceQuery = {
|
|
|
31398
32778
|
} | null;
|
|
31399
32779
|
} | null;
|
|
31400
32780
|
};
|
|
31401
|
-
export type QueryPlacesQueryVariables = Exact<{
|
|
32781
|
+
export type QueryPlacesQueryVariables = Exact<{
|
|
32782
|
+
filter?: InputMaybe<PlaceFilter>;
|
|
32783
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
32784
|
+
}>;
|
|
32785
|
+
export type QueryPlacesQuery = {
|
|
32786
|
+
__typename?: 'Query';
|
|
32787
|
+
places?: {
|
|
32788
|
+
__typename?: 'PlaceResults';
|
|
32789
|
+
results?: Array<{
|
|
32790
|
+
__typename?: 'Place';
|
|
32791
|
+
id: string;
|
|
32792
|
+
name: string;
|
|
32793
|
+
creationDate: any;
|
|
32794
|
+
modifiedDate?: any | null;
|
|
32795
|
+
relevance?: number | null;
|
|
32796
|
+
state: EntityState;
|
|
32797
|
+
alternateNames?: Array<string | null> | null;
|
|
32798
|
+
uri?: any | null;
|
|
32799
|
+
description?: string | null;
|
|
32800
|
+
identifier?: string | null;
|
|
32801
|
+
thing?: string | null;
|
|
32802
|
+
telephone?: string | null;
|
|
32803
|
+
openingHours?: string | null;
|
|
32804
|
+
priceRange?: string | null;
|
|
32805
|
+
owner: {
|
|
32806
|
+
__typename?: 'Owner';
|
|
32807
|
+
id: string;
|
|
32808
|
+
};
|
|
32809
|
+
feeds?: Array<{
|
|
32810
|
+
__typename?: 'Feed';
|
|
32811
|
+
id: string;
|
|
32812
|
+
name: string;
|
|
32813
|
+
} | null> | null;
|
|
32814
|
+
links?: Array<{
|
|
32815
|
+
__typename?: 'LinkReference';
|
|
32816
|
+
uri?: any | null;
|
|
32817
|
+
linkType?: LinkTypes | null;
|
|
32818
|
+
excerpts?: string | null;
|
|
32819
|
+
} | null> | null;
|
|
32820
|
+
workflow?: {
|
|
32821
|
+
__typename?: 'Workflow';
|
|
32822
|
+
id: string;
|
|
32823
|
+
name: string;
|
|
32824
|
+
} | null;
|
|
32825
|
+
location?: {
|
|
32826
|
+
__typename?: 'Point';
|
|
32827
|
+
latitude?: number | null;
|
|
32828
|
+
longitude?: number | null;
|
|
32829
|
+
} | null;
|
|
32830
|
+
h3?: {
|
|
32831
|
+
__typename?: 'H3';
|
|
32832
|
+
h3r0?: string | null;
|
|
32833
|
+
h3r1?: string | null;
|
|
32834
|
+
h3r2?: string | null;
|
|
32835
|
+
h3r3?: string | null;
|
|
32836
|
+
h3r4?: string | null;
|
|
32837
|
+
h3r5?: string | null;
|
|
32838
|
+
h3r6?: string | null;
|
|
32839
|
+
h3r7?: string | null;
|
|
32840
|
+
h3r8?: string | null;
|
|
32841
|
+
h3r9?: string | null;
|
|
32842
|
+
h3r10?: string | null;
|
|
32843
|
+
h3r11?: string | null;
|
|
32844
|
+
h3r12?: string | null;
|
|
32845
|
+
h3r13?: string | null;
|
|
32846
|
+
h3r14?: string | null;
|
|
32847
|
+
h3r15?: string | null;
|
|
32848
|
+
} | null;
|
|
32849
|
+
address?: {
|
|
32850
|
+
__typename?: 'Address';
|
|
32851
|
+
streetAddress?: string | null;
|
|
32852
|
+
city?: string | null;
|
|
32853
|
+
region?: string | null;
|
|
32854
|
+
country?: string | null;
|
|
32855
|
+
postalCode?: string | null;
|
|
32856
|
+
} | null;
|
|
32857
|
+
} | null> | null;
|
|
32858
|
+
} | null;
|
|
32859
|
+
};
|
|
32860
|
+
export type QueryPlacesClustersQueryVariables = Exact<{
|
|
31402
32861
|
filter?: InputMaybe<PlaceFilter>;
|
|
32862
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
31403
32863
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
31404
32864
|
}>;
|
|
31405
|
-
export type
|
|
32865
|
+
export type QueryPlacesClustersQuery = {
|
|
31406
32866
|
__typename?: 'Query';
|
|
31407
32867
|
places?: {
|
|
31408
32868
|
__typename?: 'PlaceResults';
|
|
@@ -31475,6 +32935,18 @@ export type QueryPlacesQuery = {
|
|
|
31475
32935
|
postalCode?: string | null;
|
|
31476
32936
|
} | null;
|
|
31477
32937
|
} | null> | null;
|
|
32938
|
+
clusters?: {
|
|
32939
|
+
__typename?: 'EntityClusters';
|
|
32940
|
+
clusters?: Array<{
|
|
32941
|
+
__typename?: 'EntityCluster';
|
|
32942
|
+
similarity?: number | null;
|
|
32943
|
+
entities: Array<{
|
|
32944
|
+
__typename?: 'NamedEntityReference';
|
|
32945
|
+
id: string;
|
|
32946
|
+
name?: string | null;
|
|
32947
|
+
}>;
|
|
32948
|
+
}> | null;
|
|
32949
|
+
} | null;
|
|
31478
32950
|
} | null;
|
|
31479
32951
|
};
|
|
31480
32952
|
export type UpdatePlaceMutationVariables = Exact<{
|
|
@@ -31725,6 +33197,104 @@ export type QueryProductsQuery = {
|
|
|
31725
33197
|
} | null> | null;
|
|
31726
33198
|
} | null;
|
|
31727
33199
|
};
|
|
33200
|
+
export type QueryProductsClustersQueryVariables = Exact<{
|
|
33201
|
+
filter?: InputMaybe<ProductFilter>;
|
|
33202
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
33203
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
33204
|
+
}>;
|
|
33205
|
+
export type QueryProductsClustersQuery = {
|
|
33206
|
+
__typename?: 'Query';
|
|
33207
|
+
products?: {
|
|
33208
|
+
__typename?: 'ProductResults';
|
|
33209
|
+
results?: Array<{
|
|
33210
|
+
__typename?: 'Product';
|
|
33211
|
+
id: string;
|
|
33212
|
+
name: string;
|
|
33213
|
+
creationDate: any;
|
|
33214
|
+
modifiedDate?: any | null;
|
|
33215
|
+
relevance?: number | null;
|
|
33216
|
+
state: EntityState;
|
|
33217
|
+
alternateNames?: Array<string | null> | null;
|
|
33218
|
+
uri?: any | null;
|
|
33219
|
+
description?: string | null;
|
|
33220
|
+
identifier?: string | null;
|
|
33221
|
+
thing?: string | null;
|
|
33222
|
+
manufacturer?: string | null;
|
|
33223
|
+
model?: string | null;
|
|
33224
|
+
brand?: string | null;
|
|
33225
|
+
upc?: string | null;
|
|
33226
|
+
sku?: string | null;
|
|
33227
|
+
gtin?: string | null;
|
|
33228
|
+
mpn?: string | null;
|
|
33229
|
+
releaseDate?: any | null;
|
|
33230
|
+
productionDate?: any | null;
|
|
33231
|
+
owner: {
|
|
33232
|
+
__typename?: 'Owner';
|
|
33233
|
+
id: string;
|
|
33234
|
+
};
|
|
33235
|
+
feeds?: Array<{
|
|
33236
|
+
__typename?: 'Feed';
|
|
33237
|
+
id: string;
|
|
33238
|
+
name: string;
|
|
33239
|
+
} | null> | null;
|
|
33240
|
+
links?: Array<{
|
|
33241
|
+
__typename?: 'LinkReference';
|
|
33242
|
+
uri?: any | null;
|
|
33243
|
+
linkType?: LinkTypes | null;
|
|
33244
|
+
excerpts?: string | null;
|
|
33245
|
+
} | null> | null;
|
|
33246
|
+
workflow?: {
|
|
33247
|
+
__typename?: 'Workflow';
|
|
33248
|
+
id: string;
|
|
33249
|
+
name: string;
|
|
33250
|
+
} | null;
|
|
33251
|
+
location?: {
|
|
33252
|
+
__typename?: 'Point';
|
|
33253
|
+
latitude?: number | null;
|
|
33254
|
+
longitude?: number | null;
|
|
33255
|
+
} | null;
|
|
33256
|
+
h3?: {
|
|
33257
|
+
__typename?: 'H3';
|
|
33258
|
+
h3r0?: string | null;
|
|
33259
|
+
h3r1?: string | null;
|
|
33260
|
+
h3r2?: string | null;
|
|
33261
|
+
h3r3?: string | null;
|
|
33262
|
+
h3r4?: string | null;
|
|
33263
|
+
h3r5?: string | null;
|
|
33264
|
+
h3r6?: string | null;
|
|
33265
|
+
h3r7?: string | null;
|
|
33266
|
+
h3r8?: string | null;
|
|
33267
|
+
h3r9?: string | null;
|
|
33268
|
+
h3r10?: string | null;
|
|
33269
|
+
h3r11?: string | null;
|
|
33270
|
+
h3r12?: string | null;
|
|
33271
|
+
h3r13?: string | null;
|
|
33272
|
+
h3r14?: string | null;
|
|
33273
|
+
h3r15?: string | null;
|
|
33274
|
+
} | null;
|
|
33275
|
+
address?: {
|
|
33276
|
+
__typename?: 'Address';
|
|
33277
|
+
streetAddress?: string | null;
|
|
33278
|
+
city?: string | null;
|
|
33279
|
+
region?: string | null;
|
|
33280
|
+
country?: string | null;
|
|
33281
|
+
postalCode?: string | null;
|
|
33282
|
+
} | null;
|
|
33283
|
+
} | null> | null;
|
|
33284
|
+
clusters?: {
|
|
33285
|
+
__typename?: 'EntityClusters';
|
|
33286
|
+
clusters?: Array<{
|
|
33287
|
+
__typename?: 'EntityCluster';
|
|
33288
|
+
similarity?: number | null;
|
|
33289
|
+
entities: Array<{
|
|
33290
|
+
__typename?: 'NamedEntityReference';
|
|
33291
|
+
id: string;
|
|
33292
|
+
name?: string | null;
|
|
33293
|
+
}>;
|
|
33294
|
+
}> | null;
|
|
33295
|
+
} | null;
|
|
33296
|
+
} | null;
|
|
33297
|
+
};
|
|
31728
33298
|
export type UpdateProductMutationVariables = Exact<{
|
|
31729
33299
|
product: ProductUpdateInput;
|
|
31730
33300
|
}>;
|
|
@@ -32153,6 +33723,87 @@ export type QueryReposQuery = {
|
|
|
32153
33723
|
} | null> | null;
|
|
32154
33724
|
} | null;
|
|
32155
33725
|
};
|
|
33726
|
+
export type QueryReposClustersQueryVariables = Exact<{
|
|
33727
|
+
filter?: InputMaybe<RepoFilter>;
|
|
33728
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
33729
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
33730
|
+
}>;
|
|
33731
|
+
export type QueryReposClustersQuery = {
|
|
33732
|
+
__typename?: 'Query';
|
|
33733
|
+
repos?: {
|
|
33734
|
+
__typename?: 'RepoResults';
|
|
33735
|
+
results?: Array<{
|
|
33736
|
+
__typename?: 'Repo';
|
|
33737
|
+
id: string;
|
|
33738
|
+
name: string;
|
|
33739
|
+
creationDate: any;
|
|
33740
|
+
modifiedDate?: any | null;
|
|
33741
|
+
relevance?: number | null;
|
|
33742
|
+
state: EntityState;
|
|
33743
|
+
alternateNames?: Array<string | null> | null;
|
|
33744
|
+
uri?: any | null;
|
|
33745
|
+
description?: string | null;
|
|
33746
|
+
identifier?: string | null;
|
|
33747
|
+
thing?: string | null;
|
|
33748
|
+
owner: {
|
|
33749
|
+
__typename?: 'Owner';
|
|
33750
|
+
id: string;
|
|
33751
|
+
};
|
|
33752
|
+
feeds?: Array<{
|
|
33753
|
+
__typename?: 'Feed';
|
|
33754
|
+
id: string;
|
|
33755
|
+
name: string;
|
|
33756
|
+
} | null> | null;
|
|
33757
|
+
links?: Array<{
|
|
33758
|
+
__typename?: 'LinkReference';
|
|
33759
|
+
uri?: any | null;
|
|
33760
|
+
linkType?: LinkTypes | null;
|
|
33761
|
+
excerpts?: string | null;
|
|
33762
|
+
} | null> | null;
|
|
33763
|
+
workflow?: {
|
|
33764
|
+
__typename?: 'Workflow';
|
|
33765
|
+
id: string;
|
|
33766
|
+
name: string;
|
|
33767
|
+
} | null;
|
|
33768
|
+
location?: {
|
|
33769
|
+
__typename?: 'Point';
|
|
33770
|
+
latitude?: number | null;
|
|
33771
|
+
longitude?: number | null;
|
|
33772
|
+
} | null;
|
|
33773
|
+
h3?: {
|
|
33774
|
+
__typename?: 'H3';
|
|
33775
|
+
h3r0?: string | null;
|
|
33776
|
+
h3r1?: string | null;
|
|
33777
|
+
h3r2?: string | null;
|
|
33778
|
+
h3r3?: string | null;
|
|
33779
|
+
h3r4?: string | null;
|
|
33780
|
+
h3r5?: string | null;
|
|
33781
|
+
h3r6?: string | null;
|
|
33782
|
+
h3r7?: string | null;
|
|
33783
|
+
h3r8?: string | null;
|
|
33784
|
+
h3r9?: string | null;
|
|
33785
|
+
h3r10?: string | null;
|
|
33786
|
+
h3r11?: string | null;
|
|
33787
|
+
h3r12?: string | null;
|
|
33788
|
+
h3r13?: string | null;
|
|
33789
|
+
h3r14?: string | null;
|
|
33790
|
+
h3r15?: string | null;
|
|
33791
|
+
} | null;
|
|
33792
|
+
} | null> | null;
|
|
33793
|
+
clusters?: {
|
|
33794
|
+
__typename?: 'EntityClusters';
|
|
33795
|
+
clusters?: Array<{
|
|
33796
|
+
__typename?: 'EntityCluster';
|
|
33797
|
+
similarity?: number | null;
|
|
33798
|
+
entities: Array<{
|
|
33799
|
+
__typename?: 'NamedEntityReference';
|
|
33800
|
+
id: string;
|
|
33801
|
+
name?: string | null;
|
|
33802
|
+
}>;
|
|
33803
|
+
}> | null;
|
|
33804
|
+
} | null;
|
|
33805
|
+
} | null;
|
|
33806
|
+
};
|
|
32156
33807
|
export type UpdateRepoMutationVariables = Exact<{
|
|
32157
33808
|
repo: RepoUpdateInput;
|
|
32158
33809
|
}>;
|
|
@@ -32390,6 +34041,89 @@ export type QuerySoftwaresQuery = {
|
|
|
32390
34041
|
} | null> | null;
|
|
32391
34042
|
} | null;
|
|
32392
34043
|
};
|
|
34044
|
+
export type QuerySoftwaresClustersQueryVariables = Exact<{
|
|
34045
|
+
filter?: InputMaybe<SoftwareFilter>;
|
|
34046
|
+
clusters?: InputMaybe<EntityClustersInput>;
|
|
34047
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
34048
|
+
}>;
|
|
34049
|
+
export type QuerySoftwaresClustersQuery = {
|
|
34050
|
+
__typename?: 'Query';
|
|
34051
|
+
softwares?: {
|
|
34052
|
+
__typename?: 'SoftwareResults';
|
|
34053
|
+
results?: Array<{
|
|
34054
|
+
__typename?: 'Software';
|
|
34055
|
+
id: string;
|
|
34056
|
+
name: string;
|
|
34057
|
+
creationDate: any;
|
|
34058
|
+
modifiedDate?: any | null;
|
|
34059
|
+
relevance?: number | null;
|
|
34060
|
+
state: EntityState;
|
|
34061
|
+
alternateNames?: Array<string | null> | null;
|
|
34062
|
+
uri?: any | null;
|
|
34063
|
+
description?: string | null;
|
|
34064
|
+
identifier?: string | null;
|
|
34065
|
+
thing?: string | null;
|
|
34066
|
+
releaseDate?: any | null;
|
|
34067
|
+
developer?: string | null;
|
|
34068
|
+
owner: {
|
|
34069
|
+
__typename?: 'Owner';
|
|
34070
|
+
id: string;
|
|
34071
|
+
};
|
|
34072
|
+
feeds?: Array<{
|
|
34073
|
+
__typename?: 'Feed';
|
|
34074
|
+
id: string;
|
|
34075
|
+
name: string;
|
|
34076
|
+
} | null> | null;
|
|
34077
|
+
links?: Array<{
|
|
34078
|
+
__typename?: 'LinkReference';
|
|
34079
|
+
uri?: any | null;
|
|
34080
|
+
linkType?: LinkTypes | null;
|
|
34081
|
+
excerpts?: string | null;
|
|
34082
|
+
} | null> | null;
|
|
34083
|
+
workflow?: {
|
|
34084
|
+
__typename?: 'Workflow';
|
|
34085
|
+
id: string;
|
|
34086
|
+
name: string;
|
|
34087
|
+
} | null;
|
|
34088
|
+
location?: {
|
|
34089
|
+
__typename?: 'Point';
|
|
34090
|
+
latitude?: number | null;
|
|
34091
|
+
longitude?: number | null;
|
|
34092
|
+
} | null;
|
|
34093
|
+
h3?: {
|
|
34094
|
+
__typename?: 'H3';
|
|
34095
|
+
h3r0?: string | null;
|
|
34096
|
+
h3r1?: string | null;
|
|
34097
|
+
h3r2?: string | null;
|
|
34098
|
+
h3r3?: string | null;
|
|
34099
|
+
h3r4?: string | null;
|
|
34100
|
+
h3r5?: string | null;
|
|
34101
|
+
h3r6?: string | null;
|
|
34102
|
+
h3r7?: string | null;
|
|
34103
|
+
h3r8?: string | null;
|
|
34104
|
+
h3r9?: string | null;
|
|
34105
|
+
h3r10?: string | null;
|
|
34106
|
+
h3r11?: string | null;
|
|
34107
|
+
h3r12?: string | null;
|
|
34108
|
+
h3r13?: string | null;
|
|
34109
|
+
h3r14?: string | null;
|
|
34110
|
+
h3r15?: string | null;
|
|
34111
|
+
} | null;
|
|
34112
|
+
} | null> | null;
|
|
34113
|
+
clusters?: {
|
|
34114
|
+
__typename?: 'EntityClusters';
|
|
34115
|
+
clusters?: Array<{
|
|
34116
|
+
__typename?: 'EntityCluster';
|
|
34117
|
+
similarity?: number | null;
|
|
34118
|
+
entities: Array<{
|
|
34119
|
+
__typename?: 'NamedEntityReference';
|
|
34120
|
+
id: string;
|
|
34121
|
+
name?: string | null;
|
|
34122
|
+
}>;
|
|
34123
|
+
}> | null;
|
|
34124
|
+
} | null;
|
|
34125
|
+
} | null;
|
|
34126
|
+
};
|
|
32393
34127
|
export type UpdateSoftwareMutationVariables = Exact<{
|
|
32394
34128
|
software: SoftwareUpdateInput;
|
|
32395
34129
|
}>;
|