graphlit-client 1.0.20251127002 → 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.
@@ -3913,6 +3913,8 @@ export type EnrichmentWorkflowJobInput = {
3913
3913
  /** Represents the enrichment workflow stage. */
3914
3914
  export type EnrichmentWorkflowStage = {
3915
3915
  __typename?: 'EnrichmentWorkflowStage';
3916
+ /** The entity resolution strategy for automatic duplicate detection and merging. */
3917
+ entityResolution?: Maybe<EntityResolutionStrategy>;
3916
3918
  /** The jobs for the enrichment workflow stage. */
3917
3919
  jobs?: Maybe<Array<Maybe<EnrichmentWorkflowJob>>>;
3918
3920
  /** The content hyperlink strategy. */
@@ -3920,11 +3922,32 @@ export type EnrichmentWorkflowStage = {
3920
3922
  };
3921
3923
  /** Represents the enrichment workflow stage. */
3922
3924
  export type EnrichmentWorkflowStageInput = {
3925
+ /** The entity resolution strategy for automatic duplicate detection and merging. */
3926
+ entityResolution?: InputMaybe<EntityResolutionStrategyInput>;
3923
3927
  /** The jobs for the enrichment workflow stage. */
3924
3928
  jobs?: InputMaybe<Array<InputMaybe<EnrichmentWorkflowJobInput>>>;
3925
3929
  /** The content hyperlink strategy. */
3926
3930
  link?: InputMaybe<LinkStrategyInput>;
3927
3931
  };
3932
+ /** Represents a cluster of entities that are likely duplicates of each other. */
3933
+ export type EntityCluster = {
3934
+ __typename?: 'EntityCluster';
3935
+ /** The entities in this cluster. */
3936
+ entities: Array<NamedEntityReference>;
3937
+ /** The average cosine similarity within the cluster (0.0-1.0). */
3938
+ similarity?: Maybe<Scalars['Float']['output']>;
3939
+ };
3940
+ /** Result of entity clustering based on embedding similarity. */
3941
+ export type EntityClusters = {
3942
+ __typename?: 'EntityClusters';
3943
+ /** The clusters of similar entities. */
3944
+ clusters?: Maybe<Array<EntityCluster>>;
3945
+ };
3946
+ /** Configuration for entity clustering based on embedding similarity. */
3947
+ export type EntityClustersInput = {
3948
+ /** The minimum cosine similarity threshold for clustering (default: 0.85). */
3949
+ threshold?: InputMaybe<Scalars['Float']['input']>;
3950
+ };
3928
3951
  /** Represents an entity enrichment connector. */
3929
3952
  export type EntityEnrichmentConnector = {
3930
3953
  __typename?: 'EntityEnrichmentConnector';
@@ -4012,6 +4035,56 @@ export type EntityExtractionConnectorInput = {
4012
4035
  /** The entity extraction service type. */
4013
4036
  type: EntityExtractionServiceTypes;
4014
4037
  };
4038
+ /** Represents extracted entities from text. */
4039
+ export type EntityExtractionMetadata = {
4040
+ __typename?: 'EntityExtractionMetadata';
4041
+ /** The extracted categories. */
4042
+ categories?: Maybe<Array<Maybe<Observable>>>;
4043
+ /** The extracted events. */
4044
+ events?: Maybe<Array<Maybe<Observable>>>;
4045
+ /** The extracted investment funds. */
4046
+ investmentFunds?: Maybe<Array<Maybe<Observable>>>;
4047
+ /** The extracted investments. */
4048
+ investments?: Maybe<Array<Maybe<Observable>>>;
4049
+ /** The extracted labels. */
4050
+ labels?: Maybe<Array<Maybe<Observable>>>;
4051
+ /** The extracted medical conditions. */
4052
+ medicalConditions?: Maybe<Array<Maybe<Observable>>>;
4053
+ /** The extracted medical contraindications. */
4054
+ medicalContraindications?: Maybe<Array<Maybe<Observable>>>;
4055
+ /** The extracted medical devices. */
4056
+ medicalDevices?: Maybe<Array<Maybe<Observable>>>;
4057
+ /** The extracted medical drug classes. */
4058
+ medicalDrugClasses?: Maybe<Array<Maybe<Observable>>>;
4059
+ /** The extracted medical drugs. */
4060
+ medicalDrugs?: Maybe<Array<Maybe<Observable>>>;
4061
+ /** The extracted medical guidelines. */
4062
+ medicalGuidelines?: Maybe<Array<Maybe<Observable>>>;
4063
+ /** The extracted medical indications. */
4064
+ medicalIndications?: Maybe<Array<Maybe<Observable>>>;
4065
+ /** The extracted medical procedures. */
4066
+ medicalProcedures?: Maybe<Array<Maybe<Observable>>>;
4067
+ /** The extracted medical studies. */
4068
+ medicalStudies?: Maybe<Array<Maybe<Observable>>>;
4069
+ /** The extracted medical tests. */
4070
+ medicalTests?: Maybe<Array<Maybe<Observable>>>;
4071
+ /** The extracted medical therapies. */
4072
+ medicalTherapies?: Maybe<Array<Maybe<Observable>>>;
4073
+ /** The extracted organizations. */
4074
+ organizations?: Maybe<Array<Maybe<Observable>>>;
4075
+ /** The extracted persons. */
4076
+ persons?: Maybe<Array<Maybe<Observable>>>;
4077
+ /** The extracted places. */
4078
+ places?: Maybe<Array<Maybe<Observable>>>;
4079
+ /** The extracted products. */
4080
+ products?: Maybe<Array<Maybe<Observable>>>;
4081
+ /** The extracted entity relationships. */
4082
+ relationships?: Maybe<Array<Maybe<ObservableRelationship>>>;
4083
+ /** The extracted code repositories. */
4084
+ repos?: Maybe<Array<Maybe<Observable>>>;
4085
+ /** The extracted software applications. */
4086
+ softwares?: Maybe<Array<Maybe<Observable>>>;
4087
+ };
4015
4088
  /** Entity extraction service type */
4016
4089
  export declare enum EntityExtractionServiceTypes {
4017
4090
  /** Azure AI Vision, fka Azure Cognitive Services Image */
@@ -4078,6 +4151,32 @@ export type EntityReferenceInput = {
4078
4151
  /** The ID of the entity. */
4079
4152
  id: Scalars['ID']['input'];
4080
4153
  };
4154
+ /** Represents the entity resolution strategy for automatic duplicate detection and merging. */
4155
+ export type EntityResolutionStrategy = {
4156
+ __typename?: 'EntityResolutionStrategy';
4157
+ /** The LLM specification used for entity resolution. If not specified, uses the workflow's extraction model. */
4158
+ specification?: Maybe<EntityReference>;
4159
+ /** The entity resolution strategy type. Defaults to disabled. */
4160
+ strategy?: Maybe<EntityResolutionStrategyTypes>;
4161
+ /** The similarity threshold for entity resolution (0.0-1.0). Defaults to 0.8. */
4162
+ threshold?: Maybe<Scalars['Float']['output']>;
4163
+ };
4164
+ /** Represents the entity resolution strategy for automatic duplicate detection and merging. */
4165
+ export type EntityResolutionStrategyInput = {
4166
+ /** The LLM specification used for entity resolution. If not specified, uses the workflow's extraction model. */
4167
+ specification?: InputMaybe<EntityReferenceInput>;
4168
+ /** The entity resolution strategy type. Defaults to disabled. */
4169
+ strategy?: InputMaybe<EntityResolutionStrategyTypes>;
4170
+ /** The similarity threshold for entity resolution (0.0-1.0). Defaults to 0.8. */
4171
+ threshold?: InputMaybe<Scalars['Float']['input']>;
4172
+ };
4173
+ /** Entity resolution strategy */
4174
+ export declare enum EntityResolutionStrategyTypes {
4175
+ /** Automatic entity resolution during enrichment */
4176
+ Automatic = "AUTOMATIC",
4177
+ /** No entity resolution is performed */
4178
+ None = "NONE"
4179
+ }
4081
4180
  /** Entity state */
4082
4181
  export declare enum EntityState {
4083
4182
  /** Approved */
@@ -4124,6 +4223,8 @@ export declare enum EntityState {
4124
4223
  Queued = "QUEUED",
4125
4224
  /** Rejected */
4126
4225
  Rejected = "REJECTED",
4226
+ /** Resolved */
4227
+ Resolved = "RESOLVED",
4127
4228
  /** Restarted */
4128
4229
  Restarted = "RESTARTED",
4129
4230
  /** Running */
@@ -4278,6 +4379,8 @@ export type Event = {
4278
4379
  priceCurrency?: Maybe<Scalars['String']['output']>;
4279
4380
  /** The relevance score of the event. */
4280
4381
  relevance?: Maybe<Scalars['Float']['output']>;
4382
+ /** The entity this event was resolved to, if entity resolution merged it into another. */
4383
+ resolvedTo?: Maybe<EntityReference>;
4281
4384
  /** The sponsor of the event. */
4282
4385
  sponsor?: Maybe<Scalars['String']['output']>;
4283
4386
  /** The event start date. */
@@ -4523,6 +4626,8 @@ export type EventMetadataInput = {
4523
4626
  /** Represents event query results. */
4524
4627
  export type EventResults = {
4525
4628
  __typename?: 'EventResults';
4629
+ /** The event clusters based on embedding similarity. */
4630
+ clusters?: Maybe<EntityClusters>;
4526
4631
  /** The event facets. */
4527
4632
  facets?: Maybe<Array<Maybe<EventFacet>>>;
4528
4633
  /** The event H3 facets. */
@@ -6691,6 +6796,8 @@ export type Investment = {
6691
6796
  proRataRights?: Maybe<Scalars['Boolean']['output']>;
6692
6797
  /** The relevance score of the investment. */
6693
6798
  relevance?: Maybe<Scalars['Float']['output']>;
6799
+ /** The entity this investment was resolved to, if entity resolution merged it into another. */
6800
+ resolvedTo?: Maybe<EntityReference>;
6694
6801
  /** The total round size. */
6695
6802
  roundSize?: Maybe<Scalars['Decimal']['output']>;
6696
6803
  /** The currency code for the round size. */
@@ -6836,6 +6943,8 @@ export type InvestmentFund = {
6836
6943
  parentFund?: Maybe<InvestmentFund>;
6837
6944
  /** The relevance score of the investmentfund. */
6838
6945
  relevance?: Maybe<Scalars['Float']['output']>;
6946
+ /** The entity this investmentfund was resolved to, if entity resolution merged it into another. */
6947
+ resolvedTo?: Maybe<EntityReference>;
6839
6948
  /** The state of the investmentfund (i.e. created, enabled). */
6840
6949
  state: EntityState;
6841
6950
  /** The target fund size. */
@@ -6958,8 +7067,12 @@ export type InvestmentFundInput = {
6958
7067
  /** Represents investment fund query results. */
6959
7068
  export type InvestmentFundResults = {
6960
7069
  __typename?: 'InvestmentFundResults';
7070
+ /** The investment fund clusters based on embedding similarity. */
7071
+ clusters?: Maybe<EntityClusters>;
6961
7072
  /** The investment fund facets. */
6962
7073
  facets?: Maybe<Array<Maybe<InvestmentFundFacet>>>;
7074
+ /** The investment fund H3 facets. */
7075
+ h3?: Maybe<H3Facets>;
6963
7076
  /** The investment fund results. */
6964
7077
  results?: Maybe<Array<Maybe<InvestmentFund>>>;
6965
7078
  };
@@ -7044,8 +7157,12 @@ export type InvestmentInput = {
7044
7157
  /** Represents investment query results. */
7045
7158
  export type InvestmentResults = {
7046
7159
  __typename?: 'InvestmentResults';
7160
+ /** The investment clusters based on embedding similarity. */
7161
+ clusters?: Maybe<EntityClusters>;
7047
7162
  /** The investment facets. */
7048
7163
  facets?: Maybe<Array<Maybe<InvestmentFacet>>>;
7164
+ /** The investment H3 facets. */
7165
+ h3?: Maybe<H3Facets>;
7049
7166
  /** The investment results. */
7050
7167
  results?: Maybe<Array<Maybe<Investment>>>;
7051
7168
  };
@@ -7641,6 +7758,16 @@ export declare enum MailSensitivity {
7641
7758
  /** Private sensitivity */
7642
7759
  Private = "PRIVATE"
7643
7760
  }
7761
+ /** Result of matching an observable to a known entity. */
7762
+ export type MatchEntityResult = {
7763
+ __typename?: 'MatchEntityResult';
7764
+ /** The LLM's explanation for the match decision. */
7765
+ reasoning?: Maybe<Scalars['String']['output']>;
7766
+ /** The matched entity reference, or null if no match found. */
7767
+ reference?: Maybe<ObservationReference>;
7768
+ /** The confidence score of the match (0.0-1.0). */
7769
+ relevance?: Maybe<Scalars['Float']['output']>;
7770
+ };
7644
7771
  /** Represents a medical condition. */
7645
7772
  export type MedicalCondition = {
7646
7773
  __typename?: 'MedicalCondition';
@@ -7674,6 +7801,8 @@ export type MedicalCondition = {
7674
7801
  owner: Owner;
7675
7802
  /** The relevance score of the medicalcondition. */
7676
7803
  relevance?: Maybe<Scalars['Float']['output']>;
7804
+ /** The entity this medicalcondition was resolved to, if entity resolution merged it into another. */
7805
+ resolvedTo?: Maybe<EntityReference>;
7677
7806
  /** The state of the medicalcondition (i.e. created, enabled). */
7678
7807
  state: EntityState;
7679
7808
  /** The JSON-LD value of the medicalcondition. */
@@ -7778,8 +7907,12 @@ export type MedicalConditionInput = {
7778
7907
  /** Represents medical condition query results. */
7779
7908
  export type MedicalConditionResults = {
7780
7909
  __typename?: 'MedicalConditionResults';
7910
+ /** The medical condition clusters based on embedding similarity. */
7911
+ clusters?: Maybe<EntityClusters>;
7781
7912
  /** The medical condition facets. */
7782
7913
  facets?: Maybe<Array<Maybe<MedicalConditionFacet>>>;
7914
+ /** The medical condition H3 facets. */
7915
+ h3?: Maybe<H3Facets>;
7783
7916
  /** The medical condition results. */
7784
7917
  results?: Maybe<Array<Maybe<MedicalCondition>>>;
7785
7918
  };
@@ -7833,6 +7966,8 @@ export type MedicalContraindication = {
7833
7966
  owner: Owner;
7834
7967
  /** The relevance score of the medicalcontraindication. */
7835
7968
  relevance?: Maybe<Scalars['Float']['output']>;
7969
+ /** The entity this medicalcontraindication was resolved to, if entity resolution merged it into another. */
7970
+ resolvedTo?: Maybe<EntityReference>;
7836
7971
  /** The state of the medicalcontraindication (i.e. created, enabled). */
7837
7972
  state: EntityState;
7838
7973
  /** The JSON-LD value of the medicalcontraindication. */
@@ -7937,8 +8072,12 @@ export type MedicalContraindicationInput = {
7937
8072
  /** Represents medical contraindication query results. */
7938
8073
  export type MedicalContraindicationResults = {
7939
8074
  __typename?: 'MedicalContraindicationResults';
8075
+ /** The medical contraindication clusters based on embedding similarity. */
8076
+ clusters?: Maybe<EntityClusters>;
7940
8077
  /** The medical contraindication facets. */
7941
8078
  facets?: Maybe<Array<Maybe<MedicalContraindicationFacet>>>;
8079
+ /** The medical contraindication H3 facets. */
8080
+ h3?: Maybe<H3Facets>;
7942
8081
  /** The medical contraindication results. */
7943
8082
  results?: Maybe<Array<Maybe<MedicalContraindication>>>;
7944
8083
  };
@@ -7992,6 +8131,8 @@ export type MedicalDevice = {
7992
8131
  owner: Owner;
7993
8132
  /** The relevance score of the medicaldevice. */
7994
8133
  relevance?: Maybe<Scalars['Float']['output']>;
8134
+ /** The entity this medicaldevice was resolved to, if entity resolution merged it into another. */
8135
+ resolvedTo?: Maybe<EntityReference>;
7995
8136
  /** The state of the medicaldevice (i.e. created, enabled). */
7996
8137
  state: EntityState;
7997
8138
  /** The JSON-LD value of the medicaldevice. */
@@ -8096,8 +8237,12 @@ export type MedicalDeviceInput = {
8096
8237
  /** Represents medical device query results. */
8097
8238
  export type MedicalDeviceResults = {
8098
8239
  __typename?: 'MedicalDeviceResults';
8240
+ /** The medical device clusters based on embedding similarity. */
8241
+ clusters?: Maybe<EntityClusters>;
8099
8242
  /** The medical device facets. */
8100
8243
  facets?: Maybe<Array<Maybe<MedicalDeviceFacet>>>;
8244
+ /** The medical device H3 facets. */
8245
+ h3?: Maybe<H3Facets>;
8101
8246
  /** The medical device results. */
8102
8247
  results?: Maybe<Array<Maybe<MedicalDevice>>>;
8103
8248
  };
@@ -8151,6 +8296,8 @@ export type MedicalDrug = {
8151
8296
  owner: Owner;
8152
8297
  /** The relevance score of the medicaldrug. */
8153
8298
  relevance?: Maybe<Scalars['Float']['output']>;
8299
+ /** The entity this medicaldrug was resolved to, if entity resolution merged it into another. */
8300
+ resolvedTo?: Maybe<EntityReference>;
8154
8301
  /** The state of the medicaldrug (i.e. created, enabled). */
8155
8302
  state: EntityState;
8156
8303
  /** The JSON-LD value of the medicaldrug. */
@@ -8193,6 +8340,8 @@ export type MedicalDrugClass = {
8193
8340
  owner: Owner;
8194
8341
  /** The relevance score of the medicaldrugclass. */
8195
8342
  relevance?: Maybe<Scalars['Float']['output']>;
8343
+ /** The entity this medicaldrugclass was resolved to, if entity resolution merged it into another. */
8344
+ resolvedTo?: Maybe<EntityReference>;
8196
8345
  /** The state of the medicaldrugclass (i.e. created, enabled). */
8197
8346
  state: EntityState;
8198
8347
  /** The JSON-LD value of the medicaldrugclass. */
@@ -8297,8 +8446,12 @@ export type MedicalDrugClassInput = {
8297
8446
  /** Represents medical drug class query results. */
8298
8447
  export type MedicalDrugClassResults = {
8299
8448
  __typename?: 'MedicalDrugClassResults';
8449
+ /** The medical drug class clusters based on embedding similarity. */
8450
+ clusters?: Maybe<EntityClusters>;
8300
8451
  /** The medical drug class facets. */
8301
8452
  facets?: Maybe<Array<Maybe<MedicalDrugClassFacet>>>;
8453
+ /** The medical drug class H3 facets. */
8454
+ h3?: Maybe<H3Facets>;
8302
8455
  /** The medical drug class results. */
8303
8456
  results?: Maybe<Array<Maybe<MedicalDrugClass>>>;
8304
8457
  };
@@ -8414,8 +8567,12 @@ export type MedicalDrugInput = {
8414
8567
  /** Represents medical drug query results. */
8415
8568
  export type MedicalDrugResults = {
8416
8569
  __typename?: 'MedicalDrugResults';
8570
+ /** The medical drug clusters based on embedding similarity. */
8571
+ clusters?: Maybe<EntityClusters>;
8417
8572
  /** The medical drug facets. */
8418
8573
  facets?: Maybe<Array<Maybe<MedicalDrugFacet>>>;
8574
+ /** The medical drug H3 facets. */
8575
+ h3?: Maybe<H3Facets>;
8419
8576
  /** The medical drug results. */
8420
8577
  results?: Maybe<Array<Maybe<MedicalDrug>>>;
8421
8578
  };
@@ -8469,6 +8626,8 @@ export type MedicalGuideline = {
8469
8626
  owner: Owner;
8470
8627
  /** The relevance score of the medicalguideline. */
8471
8628
  relevance?: Maybe<Scalars['Float']['output']>;
8629
+ /** The entity this medicalguideline was resolved to, if entity resolution merged it into another. */
8630
+ resolvedTo?: Maybe<EntityReference>;
8472
8631
  /** The state of the medicalguideline (i.e. created, enabled). */
8473
8632
  state: EntityState;
8474
8633
  /** The JSON-LD value of the medicalguideline. */
@@ -8573,8 +8732,12 @@ export type MedicalGuidelineInput = {
8573
8732
  /** Represents medical guideline query results. */
8574
8733
  export type MedicalGuidelineResults = {
8575
8734
  __typename?: 'MedicalGuidelineResults';
8735
+ /** The medical guideline clusters based on embedding similarity. */
8736
+ clusters?: Maybe<EntityClusters>;
8576
8737
  /** The medical guideline facets. */
8577
8738
  facets?: Maybe<Array<Maybe<MedicalGuidelineFacet>>>;
8739
+ /** The medical guideline H3 facets. */
8740
+ h3?: Maybe<H3Facets>;
8578
8741
  /** The medical guideline results. */
8579
8742
  results?: Maybe<Array<Maybe<MedicalGuideline>>>;
8580
8743
  };
@@ -8628,6 +8791,8 @@ export type MedicalIndication = {
8628
8791
  owner: Owner;
8629
8792
  /** The relevance score of the medicalindication. */
8630
8793
  relevance?: Maybe<Scalars['Float']['output']>;
8794
+ /** The entity this medicalindication was resolved to, if entity resolution merged it into another. */
8795
+ resolvedTo?: Maybe<EntityReference>;
8631
8796
  /** The state of the medicalindication (i.e. created, enabled). */
8632
8797
  state: EntityState;
8633
8798
  /** The JSON-LD value of the medicalindication. */
@@ -8732,8 +8897,12 @@ export type MedicalIndicationInput = {
8732
8897
  /** Represents medical indication query results. */
8733
8898
  export type MedicalIndicationResults = {
8734
8899
  __typename?: 'MedicalIndicationResults';
8900
+ /** The medical indication clusters based on embedding similarity. */
8901
+ clusters?: Maybe<EntityClusters>;
8735
8902
  /** The medical indication facets. */
8736
8903
  facets?: Maybe<Array<Maybe<MedicalIndicationFacet>>>;
8904
+ /** The medical indication H3 facets. */
8905
+ h3?: Maybe<H3Facets>;
8737
8906
  /** The medical indication results. */
8738
8907
  results?: Maybe<Array<Maybe<MedicalIndication>>>;
8739
8908
  };
@@ -8787,6 +8956,8 @@ export type MedicalProcedure = {
8787
8956
  owner: Owner;
8788
8957
  /** The relevance score of the medicalprocedure. */
8789
8958
  relevance?: Maybe<Scalars['Float']['output']>;
8959
+ /** The entity this medicalprocedure was resolved to, if entity resolution merged it into another. */
8960
+ resolvedTo?: Maybe<EntityReference>;
8790
8961
  /** The state of the medicalprocedure (i.e. created, enabled). */
8791
8962
  state: EntityState;
8792
8963
  /** The JSON-LD value of the medicalprocedure. */
@@ -8891,8 +9062,12 @@ export type MedicalProcedureInput = {
8891
9062
  /** Represents medical procedure query results. */
8892
9063
  export type MedicalProcedureResults = {
8893
9064
  __typename?: 'MedicalProcedureResults';
9065
+ /** The medical procedure clusters based on embedding similarity. */
9066
+ clusters?: Maybe<EntityClusters>;
8894
9067
  /** The medical procedure facets. */
8895
9068
  facets?: Maybe<Array<Maybe<MedicalProcedureFacet>>>;
9069
+ /** The medical procedure H3 facets. */
9070
+ h3?: Maybe<H3Facets>;
8896
9071
  /** The medical procedure results. */
8897
9072
  results?: Maybe<Array<Maybe<MedicalProcedure>>>;
8898
9073
  };
@@ -8948,6 +9123,8 @@ export type MedicalStudy = {
8948
9123
  owner: Owner;
8949
9124
  /** The relevance score of the medicalstudy. */
8950
9125
  relevance?: Maybe<Scalars['Float']['output']>;
9126
+ /** The entity this medicalstudy was resolved to, if entity resolution merged it into another. */
9127
+ resolvedTo?: Maybe<EntityReference>;
8951
9128
  /** The state of the medicalstudy (i.e. created, enabled). */
8952
9129
  state: EntityState;
8953
9130
  /** The JSON-LD value of the medicalstudy. */
@@ -9054,6 +9231,8 @@ export type MedicalStudyInput = {
9054
9231
  /** Represents medical study query results. */
9055
9232
  export type MedicalStudyResults = {
9056
9233
  __typename?: 'MedicalStudyResults';
9234
+ /** The medical study clusters based on embedding similarity. */
9235
+ clusters?: Maybe<EntityClusters>;
9057
9236
  /** The medical study facets. */
9058
9237
  facets?: Maybe<Array<Maybe<MedicalStudyFacet>>>;
9059
9238
  /** The medical study H3 facets. */
@@ -9113,6 +9292,8 @@ export type MedicalTest = {
9113
9292
  owner: Owner;
9114
9293
  /** The relevance score of the medicaltest. */
9115
9294
  relevance?: Maybe<Scalars['Float']['output']>;
9295
+ /** The entity this medicaltest was resolved to, if entity resolution merged it into another. */
9296
+ resolvedTo?: Maybe<EntityReference>;
9116
9297
  /** The state of the medicaltest (i.e. created, enabled). */
9117
9298
  state: EntityState;
9118
9299
  /** The JSON-LD value of the medicaltest. */
@@ -9217,8 +9398,12 @@ export type MedicalTestInput = {
9217
9398
  /** Represents medical test query results. */
9218
9399
  export type MedicalTestResults = {
9219
9400
  __typename?: 'MedicalTestResults';
9401
+ /** The medical test clusters based on embedding similarity. */
9402
+ clusters?: Maybe<EntityClusters>;
9220
9403
  /** The medical test facets. */
9221
9404
  facets?: Maybe<Array<Maybe<MedicalTestFacet>>>;
9405
+ /** The medical test H3 facets. */
9406
+ h3?: Maybe<H3Facets>;
9222
9407
  /** The medical test results. */
9223
9408
  results?: Maybe<Array<Maybe<MedicalTest>>>;
9224
9409
  };
@@ -9272,6 +9457,8 @@ export type MedicalTherapy = {
9272
9457
  owner: Owner;
9273
9458
  /** The relevance score of the medicaltherapy. */
9274
9459
  relevance?: Maybe<Scalars['Float']['output']>;
9460
+ /** The entity this medicaltherapy was resolved to, if entity resolution merged it into another. */
9461
+ resolvedTo?: Maybe<EntityReference>;
9275
9462
  /** The state of the medicaltherapy (i.e. created, enabled). */
9276
9463
  state: EntityState;
9277
9464
  /** The JSON-LD value of the medicaltherapy. */
@@ -9376,8 +9563,12 @@ export type MedicalTherapyInput = {
9376
9563
  /** Represents medical therapy query results. */
9377
9564
  export type MedicalTherapyResults = {
9378
9565
  __typename?: 'MedicalTherapyResults';
9566
+ /** The medical therapy clusters based on embedding similarity. */
9567
+ clusters?: Maybe<EntityClusters>;
9379
9568
  /** The medical therapy facets. */
9380
9569
  facets?: Maybe<Array<Maybe<MedicalTherapyFacet>>>;
9570
+ /** The medical therapy H3 facets. */
9571
+ h3?: Maybe<H3Facets>;
9381
9572
  /** The medical therapy results. */
9382
9573
  results?: Maybe<Array<Maybe<MedicalTherapy>>>;
9383
9574
  };
@@ -10457,6 +10648,8 @@ export type Mutation = {
10457
10648
  enrichProducts?: Maybe<Array<Maybe<Product>>>;
10458
10649
  /** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
10459
10650
  extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
10651
+ /** Extracts observable entities from text. */
10652
+ extractObservables?: Maybe<EntityExtractionMetadata>;
10460
10653
  /** Extracts data using tool calling, from text. */
10461
10654
  extractText?: Maybe<Array<Maybe<ExtractCompletion>>>;
10462
10655
  /** Format a conversation LLM user prompt. */
@@ -10484,6 +10677,8 @@ export type Mutation = {
10484
10677
  ingestTextBatch?: Maybe<Array<Maybe<Content>>>;
10485
10678
  /** Ingests content by URI. Supports files and webpages. */
10486
10679
  ingestUri?: Maybe<Content>;
10680
+ /** Matches an extracted observable entity to a known entity from a list of candidates using LLM reasoning. */
10681
+ matchEntity?: Maybe<MatchEntityResult>;
10487
10682
  /** Opens an existing collection. */
10488
10683
  openCollection?: Maybe<Collection>;
10489
10684
  /** Opens an existing conversation. */
@@ -10509,6 +10704,10 @@ export type Mutation = {
10509
10704
  removeContentsFromCollection?: Maybe<Collection>;
10510
10705
  /** Research contents via web research based on provided filter criteria. */
10511
10706
  researchContents?: Maybe<StringResult>;
10707
+ /** Resolves duplicate entities into a single primary entity using LLM reasoning. Returns clusters of suggested groupings if resolution is not executed. */
10708
+ resolveEntities?: Maybe<ResolveEntitiesResult>;
10709
+ /** Resolves a source entity into a target entity using LLM-driven metadata merging. The target is always the primary/canonical entity. */
10710
+ resolveEntity?: Maybe<ResolveEntityResult>;
10512
10711
  /** Restarts workflow on contents based on the provided filter criteria. */
10513
10712
  restartAllContents?: Maybe<Array<Maybe<Content>>>;
10514
10713
  /** Restarts workflow on content. */
@@ -11188,6 +11387,13 @@ export type MutationExtractContentsArgs = {
11188
11387
  specification?: InputMaybe<EntityReferenceInput>;
11189
11388
  tools: Array<ToolDefinitionInput>;
11190
11389
  };
11390
+ export type MutationExtractObservablesArgs = {
11391
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11392
+ observableTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
11393
+ specification?: InputMaybe<EntityReferenceInput>;
11394
+ text: Scalars['String']['input'];
11395
+ textType?: InputMaybe<TextTypes>;
11396
+ };
11191
11397
  export type MutationExtractTextArgs = {
11192
11398
  correlationId?: InputMaybe<Scalars['String']['input']>;
11193
11399
  prompt: Scalars['String']['input'];
@@ -11296,6 +11502,12 @@ export type MutationIngestUriArgs = {
11296
11502
  uri: Scalars['URL']['input'];
11297
11503
  workflow?: InputMaybe<EntityReferenceInput>;
11298
11504
  };
11505
+ export type MutationMatchEntityArgs = {
11506
+ candidates: Array<EntityReferenceInput>;
11507
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11508
+ observable: ObservableInput;
11509
+ specification?: InputMaybe<EntityReferenceInput>;
11510
+ };
11299
11511
  export type MutationOpenCollectionArgs = {
11300
11512
  id: Scalars['ID']['input'];
11301
11513
  };
@@ -11378,6 +11590,20 @@ export type MutationResearchContentsArgs = {
11378
11590
  summarySpecification?: InputMaybe<EntityReferenceInput>;
11379
11591
  workflow?: InputMaybe<EntityReferenceInput>;
11380
11592
  };
11593
+ export type MutationResolveEntitiesArgs = {
11594
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11595
+ entities: Array<EntityReferenceInput>;
11596
+ specification?: InputMaybe<EntityReferenceInput>;
11597
+ threshold?: InputMaybe<Scalars['Float']['input']>;
11598
+ type: ObservableTypes;
11599
+ };
11600
+ export type MutationResolveEntityArgs = {
11601
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11602
+ source: EntityReferenceInput;
11603
+ specification?: InputMaybe<EntityReferenceInput>;
11604
+ target: EntityReferenceInput;
11605
+ type: ObservableTypes;
11606
+ };
11381
11607
  export type MutationRestartAllContentsArgs = {
11382
11608
  correlationId?: InputMaybe<Scalars['String']['input']>;
11383
11609
  filter?: InputMaybe<ContentFilter>;
@@ -11712,6 +11938,18 @@ export declare enum OAuthProviders {
11712
11938
  /** Dropbox authentication provider */
11713
11939
  Dropbox = "DROPBOX"
11714
11940
  }
11941
+ /** Represents an extracted observable entity. */
11942
+ export type Observable = {
11943
+ __typename?: 'Observable';
11944
+ /** The Schema.NET JSON-LD object as serialized JSON string. */
11945
+ metadata?: Maybe<Scalars['String']['output']>;
11946
+ /** The entity name. */
11947
+ name?: Maybe<Scalars['String']['output']>;
11948
+ /** The occurrences in source text. */
11949
+ occurrences?: Maybe<Array<Maybe<Occurrence>>>;
11950
+ /** The observable entity type. */
11951
+ type?: Maybe<ObservableTypes>;
11952
+ };
11715
11953
  /** Represents an observable facet. */
11716
11954
  export type ObservableFacet = {
11717
11955
  __typename?: 'ObservableFacet';
@@ -11720,6 +11958,29 @@ export type ObservableFacet = {
11720
11958
  /** The observed entity type. */
11721
11959
  type?: Maybe<ObservableTypes>;
11722
11960
  };
11961
+ /** Input for an observable entity used in entity resolution. */
11962
+ export type ObservableInput = {
11963
+ /** The Schema.NET JSON-LD metadata for additional context. */
11964
+ metadata?: InputMaybe<Scalars['String']['input']>;
11965
+ /** The entity name. */
11966
+ name: Scalars['String']['input'];
11967
+ /** The observable entity type. */
11968
+ type: ObservableTypes;
11969
+ };
11970
+ /** Represents a relationship between extracted entities. */
11971
+ export type ObservableRelationship = {
11972
+ __typename?: 'ObservableRelationship';
11973
+ /** The source entity identifier. */
11974
+ from?: Maybe<Scalars['String']['output']>;
11975
+ /** The source entity type. */
11976
+ fromType?: Maybe<ObservableTypes>;
11977
+ /** The relationship type (e.g., worksFor, affiliation). */
11978
+ relation?: Maybe<Scalars['String']['output']>;
11979
+ /** The target entity identifier. */
11980
+ to?: Maybe<Scalars['String']['output']>;
11981
+ /** The target entity type. */
11982
+ toType?: Maybe<ObservableTypes>;
11983
+ };
11723
11984
  /** Represents observable results. */
11724
11985
  export type ObservableResults = {
11725
11986
  __typename?: 'ObservableResults';
@@ -11911,6 +12172,22 @@ export type ObservationUpdateInput = {
11911
12172
  /** The observed entity type. */
11912
12173
  type?: InputMaybe<ObservableTypes>;
11913
12174
  };
12175
+ /** Represents where an extracted entity was found in the source text. */
12176
+ export type Occurrence = {
12177
+ __typename?: 'Occurrence';
12178
+ /** The bounding box in an image where the entity was found. */
12179
+ boundingBox?: Maybe<BoundingBox>;
12180
+ /** The extraction confidence score. */
12181
+ confidence?: Maybe<Scalars['Float']['output']>;
12182
+ /** The end time in transcript where the entity was found. */
12183
+ endTime?: Maybe<Scalars['TimeSpan']['output']>;
12184
+ /** The page index where the entity was found. */
12185
+ pageIndex?: Maybe<Scalars['Int']['output']>;
12186
+ /** The start time in transcript where the entity was found. */
12187
+ startTime?: Maybe<Scalars['TimeSpan']['output']>;
12188
+ /** The occurrence type. */
12189
+ type?: Maybe<OccurrenceTypes>;
12190
+ };
11914
12191
  export declare enum OccurrenceTypes {
11915
12192
  Image = "IMAGE",
11916
12193
  Text = "TEXT",
@@ -12414,6 +12691,8 @@ export type Organization = {
12414
12691
  parentOrganization?: Maybe<Organization>;
12415
12692
  /** The relevance score of the organization. */
12416
12693
  relevance?: Maybe<Scalars['Float']['output']>;
12694
+ /** The entity this organization was resolved to, if entity resolution merged it into another. */
12695
+ resolvedTo?: Maybe<EntityReference>;
12417
12696
  /** The revenue of the organization. */
12418
12697
  revenue?: Maybe<Scalars['Decimal']['output']>;
12419
12698
  /** The currency of the revenue of the organization. */
@@ -12548,6 +12827,8 @@ export type OrganizationInput = {
12548
12827
  /** Represents organization query results. */
12549
12828
  export type OrganizationResults = {
12550
12829
  __typename?: 'OrganizationResults';
12830
+ /** The organization clusters based on embedding similarity. */
12831
+ clusters?: Maybe<EntityClusters>;
12551
12832
  /** The organization facets. */
12552
12833
  facets?: Maybe<Array<Maybe<OrganizationFacet>>>;
12553
12834
  /** The organization H3 facets. */
@@ -12796,6 +13077,8 @@ export type Person = {
12796
13077
  phoneNumber?: Maybe<Scalars['String']['output']>;
12797
13078
  /** The relevance score of the person. */
12798
13079
  relevance?: Maybe<Scalars['Float']['output']>;
13080
+ /** The entity this person was resolved to, if entity resolution merged it into another. */
13081
+ resolvedTo?: Maybe<EntityReference>;
12799
13082
  /** The state of the person (i.e. created, enabled). */
12800
13083
  state: EntityState;
12801
13084
  /** The JSON-LD value of the person. */
@@ -12957,6 +13240,8 @@ export type PersonReferenceInput = {
12957
13240
  /** Represents person query results. */
12958
13241
  export type PersonResults = {
12959
13242
  __typename?: 'PersonResults';
13243
+ /** The person clusters based on embedding similarity. */
13244
+ clusters?: Maybe<EntityClusters>;
12960
13245
  /** The person facets. */
12961
13246
  facets?: Maybe<Array<Maybe<PersonFacet>>>;
12962
13247
  /** The person H3 facets. */
@@ -13038,6 +13323,8 @@ export type Place = {
13038
13323
  priceRange?: Maybe<Scalars['String']['output']>;
13039
13324
  /** The relevance score of the place. */
13040
13325
  relevance?: Maybe<Scalars['Float']['output']>;
13326
+ /** The entity this place was resolved to, if entity resolution merged it into another. */
13327
+ resolvedTo?: Maybe<EntityReference>;
13041
13328
  /** The state of the place (i.e. created, enabled). */
13042
13329
  state: EntityState;
13043
13330
  /** The telephone number of the place. */
@@ -13152,6 +13439,8 @@ export type PlaceInput = {
13152
13439
  /** Represents place query results. */
13153
13440
  export type PlaceResults = {
13154
13441
  __typename?: 'PlaceResults';
13442
+ /** The place clusters based on embedding similarity. */
13443
+ clusters?: Maybe<EntityClusters>;
13155
13444
  /** The place facets. */
13156
13445
  facets?: Maybe<Array<Maybe<PlaceFacet>>>;
13157
13446
  /** The place H3 facets. */
@@ -13363,6 +13652,8 @@ export type Product = {
13363
13652
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
13364
13653
  /** The relevance score of the product. */
13365
13654
  relevance?: Maybe<Scalars['Float']['output']>;
13655
+ /** The entity this product was resolved to, if entity resolution merged it into another. */
13656
+ resolvedTo?: Maybe<EntityReference>;
13366
13657
  /** The product SKU. */
13367
13658
  sku?: Maybe<Scalars['String']['output']>;
13368
13659
  /** The state of the product (i.e. created, enabled). */
@@ -13505,6 +13796,8 @@ export type ProductInput = {
13505
13796
  /** Represents product query results. */
13506
13797
  export type ProductResults = {
13507
13798
  __typename?: 'ProductResults';
13799
+ /** The product clusters based on embedding similarity. */
13800
+ clusters?: Maybe<EntityClusters>;
13508
13801
  /** The product facets. */
13509
13802
  facets?: Maybe<Array<Maybe<ProductFacet>>>;
13510
13803
  /** The product results. */
@@ -14589,6 +14882,7 @@ export type QueryEventArgs = {
14589
14882
  id: Scalars['ID']['input'];
14590
14883
  };
14591
14884
  export type QueryEventsArgs = {
14885
+ clusters?: InputMaybe<EntityClustersInput>;
14592
14886
  correlationId?: InputMaybe<Scalars['String']['input']>;
14593
14887
  facets?: InputMaybe<Array<EventFacetInput>>;
14594
14888
  filter?: InputMaybe<EventFilter>;
@@ -14630,11 +14924,13 @@ export type QueryInvestmentFundArgs = {
14630
14924
  id: Scalars['ID']['input'];
14631
14925
  };
14632
14926
  export type QueryInvestmentFundsArgs = {
14927
+ clusters?: InputMaybe<EntityClustersInput>;
14633
14928
  correlationId?: InputMaybe<Scalars['String']['input']>;
14634
14929
  facets?: InputMaybe<Array<InvestmentFundFacetInput>>;
14635
14930
  filter?: InputMaybe<InvestmentFundFilter>;
14636
14931
  };
14637
14932
  export type QueryInvestmentsArgs = {
14933
+ clusters?: InputMaybe<EntityClustersInput>;
14638
14934
  correlationId?: InputMaybe<Scalars['String']['input']>;
14639
14935
  facets?: InputMaybe<Array<InvestmentFacetInput>>;
14640
14936
  filter?: InputMaybe<InvestmentFilter>;
@@ -14684,6 +14980,7 @@ export type QueryMedicalConditionArgs = {
14684
14980
  id: Scalars['ID']['input'];
14685
14981
  };
14686
14982
  export type QueryMedicalConditionsArgs = {
14983
+ clusters?: InputMaybe<EntityClustersInput>;
14687
14984
  correlationId?: InputMaybe<Scalars['String']['input']>;
14688
14985
  facets?: InputMaybe<Array<MedicalConditionFacetInput>>;
14689
14986
  filter?: InputMaybe<MedicalConditionFilter>;
@@ -14693,6 +14990,7 @@ export type QueryMedicalContraindicationArgs = {
14693
14990
  id: Scalars['ID']['input'];
14694
14991
  };
14695
14992
  export type QueryMedicalContraindicationsArgs = {
14993
+ clusters?: InputMaybe<EntityClustersInput>;
14696
14994
  correlationId?: InputMaybe<Scalars['String']['input']>;
14697
14995
  facets?: InputMaybe<Array<MedicalContraindicationFacetInput>>;
14698
14996
  filter?: InputMaybe<MedicalContraindicationFilter>;
@@ -14702,6 +15000,7 @@ export type QueryMedicalDeviceArgs = {
14702
15000
  id: Scalars['ID']['input'];
14703
15001
  };
14704
15002
  export type QueryMedicalDevicesArgs = {
15003
+ clusters?: InputMaybe<EntityClustersInput>;
14705
15004
  correlationId?: InputMaybe<Scalars['String']['input']>;
14706
15005
  facets?: InputMaybe<Array<MedicalDeviceFacetInput>>;
14707
15006
  filter?: InputMaybe<MedicalDeviceFilter>;
@@ -14715,11 +15014,13 @@ export type QueryMedicalDrugClassArgs = {
14715
15014
  id: Scalars['ID']['input'];
14716
15015
  };
14717
15016
  export type QueryMedicalDrugClassesArgs = {
15017
+ clusters?: InputMaybe<EntityClustersInput>;
14718
15018
  correlationId?: InputMaybe<Scalars['String']['input']>;
14719
15019
  facets?: InputMaybe<Array<MedicalDrugClassFacetInput>>;
14720
15020
  filter?: InputMaybe<MedicalDrugClassFilter>;
14721
15021
  };
14722
15022
  export type QueryMedicalDrugsArgs = {
15023
+ clusters?: InputMaybe<EntityClustersInput>;
14723
15024
  correlationId?: InputMaybe<Scalars['String']['input']>;
14724
15025
  facets?: InputMaybe<Array<MedicalDrugFacetInput>>;
14725
15026
  filter?: InputMaybe<MedicalDrugFilter>;
@@ -14729,6 +15030,7 @@ export type QueryMedicalGuidelineArgs = {
14729
15030
  id: Scalars['ID']['input'];
14730
15031
  };
14731
15032
  export type QueryMedicalGuidelinesArgs = {
15033
+ clusters?: InputMaybe<EntityClustersInput>;
14732
15034
  correlationId?: InputMaybe<Scalars['String']['input']>;
14733
15035
  facets?: InputMaybe<Array<MedicalGuidelineFacetInput>>;
14734
15036
  filter?: InputMaybe<MedicalGuidelineFilter>;
@@ -14738,6 +15040,7 @@ export type QueryMedicalIndicationArgs = {
14738
15040
  id: Scalars['ID']['input'];
14739
15041
  };
14740
15042
  export type QueryMedicalIndicationsArgs = {
15043
+ clusters?: InputMaybe<EntityClustersInput>;
14741
15044
  correlationId?: InputMaybe<Scalars['String']['input']>;
14742
15045
  facets?: InputMaybe<Array<MedicalIndicationFacetInput>>;
14743
15046
  filter?: InputMaybe<MedicalIndicationFilter>;
@@ -14747,11 +15050,13 @@ export type QueryMedicalProcedureArgs = {
14747
15050
  id: Scalars['ID']['input'];
14748
15051
  };
14749
15052
  export type QueryMedicalProceduresArgs = {
15053
+ clusters?: InputMaybe<EntityClustersInput>;
14750
15054
  correlationId?: InputMaybe<Scalars['String']['input']>;
14751
15055
  facets?: InputMaybe<Array<MedicalProcedureFacetInput>>;
14752
15056
  filter?: InputMaybe<MedicalProcedureFilter>;
14753
15057
  };
14754
15058
  export type QueryMedicalStudiesArgs = {
15059
+ clusters?: InputMaybe<EntityClustersInput>;
14755
15060
  correlationId?: InputMaybe<Scalars['String']['input']>;
14756
15061
  facets?: InputMaybe<Array<MedicalStudyFacetInput>>;
14757
15062
  filter?: InputMaybe<MedicalStudyFilter>;
@@ -14765,11 +15070,13 @@ export type QueryMedicalTestArgs = {
14765
15070
  id: Scalars['ID']['input'];
14766
15071
  };
14767
15072
  export type QueryMedicalTestsArgs = {
15073
+ clusters?: InputMaybe<EntityClustersInput>;
14768
15074
  correlationId?: InputMaybe<Scalars['String']['input']>;
14769
15075
  facets?: InputMaybe<Array<MedicalTestFacetInput>>;
14770
15076
  filter?: InputMaybe<MedicalTestFilter>;
14771
15077
  };
14772
15078
  export type QueryMedicalTherapiesArgs = {
15079
+ clusters?: InputMaybe<EntityClustersInput>;
14773
15080
  correlationId?: InputMaybe<Scalars['String']['input']>;
14774
15081
  facets?: InputMaybe<Array<MedicalTherapyFacetInput>>;
14775
15082
  filter?: InputMaybe<MedicalTherapyFilter>;
@@ -14815,6 +15122,7 @@ export type QueryOrganizationArgs = {
14815
15122
  id: Scalars['ID']['input'];
14816
15123
  };
14817
15124
  export type QueryOrganizationsArgs = {
15125
+ clusters?: InputMaybe<EntityClustersInput>;
14818
15126
  correlationId?: InputMaybe<Scalars['String']['input']>;
14819
15127
  facets?: InputMaybe<Array<OrganizationFacetInput>>;
14820
15128
  filter?: InputMaybe<OrganizationFilter>;
@@ -14824,6 +15132,7 @@ export type QueryPersonArgs = {
14824
15132
  id: Scalars['ID']['input'];
14825
15133
  };
14826
15134
  export type QueryPersonsArgs = {
15135
+ clusters?: InputMaybe<EntityClustersInput>;
14827
15136
  correlationId?: InputMaybe<Scalars['String']['input']>;
14828
15137
  facets?: InputMaybe<Array<PersonFacetInput>>;
14829
15138
  filter?: InputMaybe<PersonFilter>;
@@ -14833,6 +15142,7 @@ export type QueryPlaceArgs = {
14833
15142
  id: Scalars['ID']['input'];
14834
15143
  };
14835
15144
  export type QueryPlacesArgs = {
15145
+ clusters?: InputMaybe<EntityClustersInput>;
14836
15146
  correlationId?: InputMaybe<Scalars['String']['input']>;
14837
15147
  facets?: InputMaybe<Array<PlaceFacetInput>>;
14838
15148
  filter?: InputMaybe<PlaceFilter>;
@@ -14842,6 +15152,7 @@ export type QueryProductArgs = {
14842
15152
  id: Scalars['ID']['input'];
14843
15153
  };
14844
15154
  export type QueryProductsArgs = {
15155
+ clusters?: InputMaybe<EntityClustersInput>;
14845
15156
  correlationId?: InputMaybe<Scalars['String']['input']>;
14846
15157
  facets?: InputMaybe<Array<ProductFacetInput>>;
14847
15158
  filter?: InputMaybe<ProductFilter>;
@@ -14858,6 +15169,7 @@ export type QueryRepoArgs = {
14858
15169
  id: Scalars['ID']['input'];
14859
15170
  };
14860
15171
  export type QueryReposArgs = {
15172
+ clusters?: InputMaybe<EntityClustersInput>;
14861
15173
  correlationId?: InputMaybe<Scalars['String']['input']>;
14862
15174
  facets?: InputMaybe<Array<RepoFacetInput>>;
14863
15175
  filter?: InputMaybe<RepoFilter>;
@@ -14887,6 +15199,7 @@ export type QuerySoftwareArgs = {
14887
15199
  id: Scalars['ID']['input'];
14888
15200
  };
14889
15201
  export type QuerySoftwaresArgs = {
15202
+ clusters?: InputMaybe<EntityClustersInput>;
14890
15203
  correlationId?: InputMaybe<Scalars['String']['input']>;
14891
15204
  facets?: InputMaybe<Array<SoftwareFacetInput>>;
14892
15205
  filter?: InputMaybe<SoftwareFilter>;
@@ -15232,18 +15545,26 @@ export type Repo = {
15232
15545
  __typename?: 'Repo';
15233
15546
  /** The alternate names of the repo. */
15234
15547
  alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
15548
+ /** The geo-boundary of the repo, as GeoJSON Feature with Polygon geometry. */
15549
+ boundary?: Maybe<Scalars['String']['output']>;
15235
15550
  /** The creation date of the repo. */
15236
15551
  creationDate: Scalars['DateTime']['output'];
15237
15552
  /** The repo description. */
15238
15553
  description?: Maybe<Scalars['String']['output']>;
15554
+ /** The EPSG code for spatial reference of the repo. */
15555
+ epsgCode?: Maybe<Scalars['Int']['output']>;
15239
15556
  /** The feeds that discovered this repo. */
15240
15557
  feeds?: Maybe<Array<Maybe<Feed>>>;
15558
+ /** The H3 index of the repo. */
15559
+ h3?: Maybe<H3>;
15241
15560
  /** The ID of the repo. */
15242
15561
  id: Scalars['ID']['output'];
15243
15562
  /** The repo external identifier. */
15244
15563
  identifier?: Maybe<Scalars['String']['output']>;
15245
15564
  /** The extracted hyperlinks. */
15246
15565
  links?: Maybe<Array<Maybe<LinkReference>>>;
15566
+ /** The geo-location of the repo. */
15567
+ location?: Maybe<Point>;
15247
15568
  /** The modified date of the repo. */
15248
15569
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
15249
15570
  /** The name of the repo. */
@@ -15254,6 +15575,8 @@ export type Repo = {
15254
15575
  project: EntityReference;
15255
15576
  /** The relevance score of the repo. */
15256
15577
  relevance?: Maybe<Scalars['Float']['output']>;
15578
+ /** The entity this repo was resolved to, if entity resolution merged it into another. */
15579
+ resolvedTo?: Maybe<EntityReference>;
15257
15580
  /** The state of the repo (i.e. created, enabled). */
15258
15581
  state: EntityState;
15259
15582
  /** The JSON-LD value of the repo. */
@@ -15342,10 +15665,14 @@ export type RepoFilter = {
15342
15665
  };
15343
15666
  /** Represents a code repository. */
15344
15667
  export type RepoInput = {
15668
+ /** The repo geo-boundary, as GeoJSON Feature with Polygon geometry. */
15669
+ boundary?: InputMaybe<Scalars['String']['input']>;
15345
15670
  /** The repo description. */
15346
15671
  description?: InputMaybe<Scalars['String']['input']>;
15347
15672
  /** The repo external identifier. */
15348
15673
  identifier?: InputMaybe<Scalars['String']['input']>;
15674
+ /** The repo geo-location. */
15675
+ location?: InputMaybe<PointInput>;
15349
15676
  /** The name of the repo. */
15350
15677
  name: Scalars['String']['input'];
15351
15678
  /** The repo URI. */
@@ -15354,6 +15681,8 @@ export type RepoInput = {
15354
15681
  /** Represents repo query results. */
15355
15682
  export type RepoResults = {
15356
15683
  __typename?: 'RepoResults';
15684
+ /** The repo clusters based on embedding similarity. */
15685
+ clusters?: Maybe<EntityClusters>;
15357
15686
  /** The repo facets. */
15358
15687
  facets?: Maybe<Array<Maybe<RepoFacet>>>;
15359
15688
  /** The repo results. */
@@ -15361,12 +15690,16 @@ export type RepoResults = {
15361
15690
  };
15362
15691
  /** Represents a code repository. */
15363
15692
  export type RepoUpdateInput = {
15693
+ /** The repo geo-boundary, as GeoJSON Feature with Polygon geometry. */
15694
+ boundary?: InputMaybe<Scalars['String']['input']>;
15364
15695
  /** The repo description. */
15365
15696
  description?: InputMaybe<Scalars['String']['input']>;
15366
15697
  /** The ID of the repo to update. */
15367
15698
  id: Scalars['ID']['input'];
15368
15699
  /** The repo external identifier. */
15369
15700
  identifier?: InputMaybe<Scalars['String']['input']>;
15701
+ /** The repo geo-location. */
15702
+ location?: InputMaybe<PointInput>;
15370
15703
  /** The name of the repo. */
15371
15704
  name?: InputMaybe<Scalars['String']['input']>;
15372
15705
  /** The repo URI. */
@@ -15437,6 +15770,34 @@ export type ResearchFeedPropertiesUpdateInput = {
15437
15770
  /** Research feed service type, i.e. Parallel. */
15438
15771
  type?: InputMaybe<FeedServiceTypes>;
15439
15772
  };
15773
+ /** Result of resolving duplicate entities. */
15774
+ export type ResolveEntitiesResult = {
15775
+ __typename?: 'ResolveEntitiesResult';
15776
+ /** Outlier clusters that were deemed distinct from the primary cluster. */
15777
+ outlierClusters?: Maybe<Array<EntityCluster>>;
15778
+ /** The primary 'golden record' entity that survived the resolution, or null if not resolved. */
15779
+ primary?: Maybe<EntityReference>;
15780
+ /** The primary cluster of resolvable entities when resolution was not executed (can be retried with lower threshold). */
15781
+ primaryCluster?: Maybe<EntityCluster>;
15782
+ /** The LLM's explanation for the resolution decision. */
15783
+ reasoning: Scalars['String']['output'];
15784
+ /** The confidence score of the resolution decision (0.0-1.0). */
15785
+ relevance: Scalars['Float']['output'];
15786
+ /** The entities that were resolved into the primary, or null if not resolved. */
15787
+ resolved?: Maybe<Array<EntityReference>>;
15788
+ /** The entity type that was resolved. */
15789
+ type: ObservableTypes;
15790
+ };
15791
+ /** Result of resolving duplicate entities into a target entity. */
15792
+ export type ResolveEntityResult = {
15793
+ __typename?: 'ResolveEntityResult';
15794
+ /** The LLM's explanation for the resolution decision. */
15795
+ reasoning?: Maybe<Scalars['String']['output']>;
15796
+ /** The resolved entity reference, or null if resolution failed. */
15797
+ reference?: Maybe<ObservationReference>;
15798
+ /** The confidence score of the resolution (0.0-1.0). */
15799
+ relevance?: Maybe<Scalars['Float']['output']>;
15800
+ };
15440
15801
  /** Resource connector type */
15441
15802
  export declare enum ResourceConnectorTypes {
15442
15803
  /** Amazon Web Services */
@@ -15936,20 +16297,28 @@ export type Software = {
15936
16297
  __typename?: 'Software';
15937
16298
  /** The alternate names of the software. */
15938
16299
  alternateNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
16300
+ /** The geo-boundary of the software, as GeoJSON Feature with Polygon geometry. */
16301
+ boundary?: Maybe<Scalars['String']['output']>;
15939
16302
  /** The creation date of the software. */
15940
16303
  creationDate: Scalars['DateTime']['output'];
15941
16304
  /** The software description. */
15942
16305
  description?: Maybe<Scalars['String']['output']>;
15943
16306
  /** The software developer. */
15944
16307
  developer?: Maybe<Scalars['String']['output']>;
16308
+ /** The EPSG code for spatial reference of the software. */
16309
+ epsgCode?: Maybe<Scalars['Int']['output']>;
15945
16310
  /** The feeds that discovered this software. */
15946
16311
  feeds?: Maybe<Array<Maybe<Feed>>>;
16312
+ /** The H3 index of the software. */
16313
+ h3?: Maybe<H3>;
15947
16314
  /** The ID of the software. */
15948
16315
  id: Scalars['ID']['output'];
15949
16316
  /** The software external identifier. */
15950
16317
  identifier?: Maybe<Scalars['String']['output']>;
15951
16318
  /** The extracted hyperlinks. */
15952
16319
  links?: Maybe<Array<Maybe<LinkReference>>>;
16320
+ /** The geo-location of the software. */
16321
+ location?: Maybe<Point>;
15953
16322
  /** The modified date of the software. */
15954
16323
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
15955
16324
  /** The name of the software. */
@@ -15962,6 +16331,8 @@ export type Software = {
15962
16331
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
15963
16332
  /** The relevance score of the software. */
15964
16333
  relevance?: Maybe<Scalars['Float']['output']>;
16334
+ /** The entity this software was resolved to, if entity resolution merged it into another. */
16335
+ resolvedTo?: Maybe<EntityReference>;
15965
16336
  /** The state of the software (i.e. created, enabled). */
15966
16337
  state: EntityState;
15967
16338
  /** The JSON-LD value of the software. */
@@ -16050,12 +16421,16 @@ export type SoftwareFilter = {
16050
16421
  };
16051
16422
  /** Represents software. */
16052
16423
  export type SoftwareInput = {
16424
+ /** The software geo-boundary, as GeoJSON Feature with Polygon geometry. */
16425
+ boundary?: InputMaybe<Scalars['String']['input']>;
16053
16426
  /** The software description. */
16054
16427
  description?: InputMaybe<Scalars['String']['input']>;
16055
16428
  /** The software developer. */
16056
16429
  developer?: InputMaybe<Scalars['String']['input']>;
16057
16430
  /** The software external identifier. */
16058
16431
  identifier?: InputMaybe<Scalars['String']['input']>;
16432
+ /** The software geo-location. */
16433
+ location?: InputMaybe<PointInput>;
16059
16434
  /** The name of the software. */
16060
16435
  name: Scalars['String']['input'];
16061
16436
  /** The software release date. */
@@ -16066,6 +16441,8 @@ export type SoftwareInput = {
16066
16441
  /** Represents software query results. */
16067
16442
  export type SoftwareResults = {
16068
16443
  __typename?: 'SoftwareResults';
16444
+ /** The software clusters based on embedding similarity. */
16445
+ clusters?: Maybe<EntityClusters>;
16069
16446
  /** The software facets. */
16070
16447
  facets?: Maybe<Array<Maybe<SoftwareFacet>>>;
16071
16448
  /** The software results. */
@@ -16073,6 +16450,8 @@ export type SoftwareResults = {
16073
16450
  };
16074
16451
  /** Represents software. */
16075
16452
  export type SoftwareUpdateInput = {
16453
+ /** The software geo-boundary, as GeoJSON Feature with Polygon geometry. */
16454
+ boundary?: InputMaybe<Scalars['String']['input']>;
16076
16455
  /** The software description. */
16077
16456
  description?: InputMaybe<Scalars['String']['input']>;
16078
16457
  /** The software developer. */
@@ -16081,6 +16460,8 @@ export type SoftwareUpdateInput = {
16081
16460
  id: Scalars['ID']['input'];
16082
16461
  /** The software external identifier. */
16083
16462
  identifier?: InputMaybe<Scalars['String']['input']>;
16463
+ /** The software geo-location. */
16464
+ location?: InputMaybe<PointInput>;
16084
16465
  /** The name of the software. */
16085
16466
  name?: InputMaybe<Scalars['String']['input']>;
16086
16467
  /** The software release date. */
@@ -18912,6 +19293,129 @@ export type ExtractContentsMutation = {
18912
19293
  } | null;
18913
19294
  } | null> | null;
18914
19295
  };
19296
+ export type ExtractObservablesMutationVariables = Exact<{
19297
+ text: Scalars['String']['input'];
19298
+ textType?: InputMaybe<TextTypes>;
19299
+ specification?: InputMaybe<EntityReferenceInput>;
19300
+ observableTypes?: InputMaybe<Array<ObservableTypes> | ObservableTypes>;
19301
+ correlationId?: InputMaybe<Scalars['String']['input']>;
19302
+ }>;
19303
+ export type ExtractObservablesMutation = {
19304
+ __typename?: 'Mutation';
19305
+ extractObservables?: {
19306
+ __typename?: 'EntityExtractionMetadata';
19307
+ labels?: Array<{
19308
+ __typename?: 'Observable';
19309
+ name?: string | null;
19310
+ metadata?: string | null;
19311
+ } | null> | null;
19312
+ categories?: Array<{
19313
+ __typename?: 'Observable';
19314
+ name?: string | null;
19315
+ metadata?: string | null;
19316
+ } | null> | null;
19317
+ persons?: Array<{
19318
+ __typename?: 'Observable';
19319
+ name?: string | null;
19320
+ metadata?: string | null;
19321
+ } | null> | null;
19322
+ organizations?: Array<{
19323
+ __typename?: 'Observable';
19324
+ name?: string | null;
19325
+ metadata?: string | null;
19326
+ } | null> | null;
19327
+ places?: Array<{
19328
+ __typename?: 'Observable';
19329
+ name?: string | null;
19330
+ metadata?: string | null;
19331
+ } | null> | null;
19332
+ events?: Array<{
19333
+ __typename?: 'Observable';
19334
+ name?: string | null;
19335
+ metadata?: string | null;
19336
+ } | null> | null;
19337
+ products?: Array<{
19338
+ __typename?: 'Observable';
19339
+ name?: string | null;
19340
+ metadata?: string | null;
19341
+ } | null> | null;
19342
+ softwares?: Array<{
19343
+ __typename?: 'Observable';
19344
+ name?: string | null;
19345
+ metadata?: string | null;
19346
+ } | null> | null;
19347
+ repos?: Array<{
19348
+ __typename?: 'Observable';
19349
+ name?: string | null;
19350
+ metadata?: string | null;
19351
+ } | null> | null;
19352
+ investments?: Array<{
19353
+ __typename?: 'Observable';
19354
+ name?: string | null;
19355
+ metadata?: string | null;
19356
+ } | null> | null;
19357
+ investmentFunds?: Array<{
19358
+ __typename?: 'Observable';
19359
+ name?: string | null;
19360
+ metadata?: string | null;
19361
+ } | null> | null;
19362
+ medicalStudies?: Array<{
19363
+ __typename?: 'Observable';
19364
+ name?: string | null;
19365
+ metadata?: string | null;
19366
+ } | null> | null;
19367
+ medicalConditions?: Array<{
19368
+ __typename?: 'Observable';
19369
+ name?: string | null;
19370
+ metadata?: string | null;
19371
+ } | null> | null;
19372
+ medicalGuidelines?: Array<{
19373
+ __typename?: 'Observable';
19374
+ name?: string | null;
19375
+ metadata?: string | null;
19376
+ } | null> | null;
19377
+ medicalDrugs?: Array<{
19378
+ __typename?: 'Observable';
19379
+ name?: string | null;
19380
+ metadata?: string | null;
19381
+ } | null> | null;
19382
+ medicalDrugClasses?: Array<{
19383
+ __typename?: 'Observable';
19384
+ name?: string | null;
19385
+ metadata?: string | null;
19386
+ } | null> | null;
19387
+ medicalIndications?: Array<{
19388
+ __typename?: 'Observable';
19389
+ name?: string | null;
19390
+ metadata?: string | null;
19391
+ } | null> | null;
19392
+ medicalContraindications?: Array<{
19393
+ __typename?: 'Observable';
19394
+ name?: string | null;
19395
+ metadata?: string | null;
19396
+ } | null> | null;
19397
+ medicalProcedures?: Array<{
19398
+ __typename?: 'Observable';
19399
+ name?: string | null;
19400
+ metadata?: string | null;
19401
+ } | null> | null;
19402
+ medicalTherapies?: Array<{
19403
+ __typename?: 'Observable';
19404
+ name?: string | null;
19405
+ metadata?: string | null;
19406
+ } | null> | null;
19407
+ medicalDevices?: Array<{
19408
+ __typename?: 'Observable';
19409
+ name?: string | null;
19410
+ metadata?: string | null;
19411
+ } | null> | null;
19412
+ medicalTests?: Array<{
19413
+ __typename?: 'Observable';
19414
+ name?: string | null;
19415
+ metadata?: string | null;
19416
+ } | null> | null;
19417
+ } | null;
19418
+ };
18915
19419
  export type ExtractTextMutationVariables = Exact<{
18916
19420
  prompt: Scalars['String']['input'];
18917
19421
  text: Scalars['String']['input'];
@@ -25528,6 +26032,109 @@ export type QueryEventsQuery = {
25528
26032
  } | null> | null;
25529
26033
  } | null;
25530
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
+ };
25531
26138
  export type UpdateEventMutationVariables = Exact<{
25532
26139
  event: EventUpdateInput;
25533
26140
  }>;
@@ -27001,11 +27608,12 @@ export type QueryInvestmentsQuery = {
27001
27608
  } | null> | null;
27002
27609
  } | null;
27003
27610
  };
27004
- export type QueryInvestmentsExpandedQueryVariables = Exact<{
27611
+ export type QueryInvestmentsClustersQueryVariables = Exact<{
27005
27612
  filter?: InputMaybe<InvestmentFilter>;
27613
+ clusters?: InputMaybe<EntityClustersInput>;
27006
27614
  correlationId?: InputMaybe<Scalars['String']['input']>;
27007
27615
  }>;
27008
- export type QueryInvestmentsExpandedQuery = {
27616
+ export type QueryInvestmentsClustersQuery = {
27009
27617
  __typename?: 'Query';
27010
27618
  investments?: {
27011
27619
  __typename?: 'InvestmentResults';
@@ -27081,9 +27689,104 @@ export type QueryInvestmentsExpandedQuery = {
27081
27689
  h3r14?: string | null;
27082
27690
  h3r15?: string | null;
27083
27691
  } | null;
27084
- investor?: {
27085
- __typename?: 'InvestmentFund';
27086
- id: string;
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
+ };
27707
+ export type QueryInvestmentsExpandedQueryVariables = Exact<{
27708
+ filter?: InputMaybe<InvestmentFilter>;
27709
+ correlationId?: InputMaybe<Scalars['String']['input']>;
27710
+ }>;
27711
+ export type QueryInvestmentsExpandedQuery = {
27712
+ __typename?: 'Query';
27713
+ investments?: {
27714
+ __typename?: 'InvestmentResults';
27715
+ results?: Array<{
27716
+ __typename?: 'Investment';
27717
+ id: string;
27718
+ name: string;
27719
+ creationDate: any;
27720
+ modifiedDate?: any | null;
27721
+ relevance?: number | null;
27722
+ state: EntityState;
27723
+ alternateNames?: Array<string | null> | null;
27724
+ uri?: any | null;
27725
+ description?: string | null;
27726
+ identifier?: string | null;
27727
+ thing?: string | null;
27728
+ amount?: any | null;
27729
+ amountCurrency?: string | null;
27730
+ status?: string | null;
27731
+ stage?: string | null;
27732
+ investmentDate?: any | null;
27733
+ roundSize?: any | null;
27734
+ roundSizeCurrency?: string | null;
27735
+ postValuation?: any | null;
27736
+ postValuationCurrency?: string | null;
27737
+ sharesOwned?: any | null;
27738
+ vehicle?: string | null;
27739
+ entryPricePerShare?: any | null;
27740
+ currentPricePerShare?: any | null;
27741
+ discountPercent?: any | null;
27742
+ proRataRights?: boolean | null;
27743
+ owner: {
27744
+ __typename?: 'Owner';
27745
+ id: string;
27746
+ };
27747
+ feeds?: Array<{
27748
+ __typename?: 'Feed';
27749
+ id: string;
27750
+ name: string;
27751
+ } | null> | null;
27752
+ links?: Array<{
27753
+ __typename?: 'LinkReference';
27754
+ uri?: any | null;
27755
+ linkType?: LinkTypes | null;
27756
+ excerpts?: string | null;
27757
+ } | null> | null;
27758
+ workflow?: {
27759
+ __typename?: 'Workflow';
27760
+ id: string;
27761
+ name: string;
27762
+ } | null;
27763
+ location?: {
27764
+ __typename?: 'Point';
27765
+ latitude?: number | null;
27766
+ longitude?: number | null;
27767
+ } | null;
27768
+ h3?: {
27769
+ __typename?: 'H3';
27770
+ h3r0?: string | null;
27771
+ h3r1?: string | null;
27772
+ h3r2?: string | null;
27773
+ h3r3?: string | null;
27774
+ h3r4?: string | null;
27775
+ h3r5?: string | null;
27776
+ h3r6?: string | null;
27777
+ h3r7?: string | null;
27778
+ h3r8?: string | null;
27779
+ h3r9?: string | null;
27780
+ h3r10?: string | null;
27781
+ h3r11?: string | null;
27782
+ h3r12?: string | null;
27783
+ h3r13?: string | null;
27784
+ h3r14?: string | null;
27785
+ h3r15?: string | null;
27786
+ } | null;
27787
+ investor?: {
27788
+ __typename?: 'InvestmentFund';
27789
+ id: string;
27087
27790
  name: string;
27088
27791
  } | null;
27089
27792
  organization?: {
@@ -27327,6 +28030,93 @@ export type QueryInvestmentFundsQuery = {
27327
28030
  } | null> | null;
27328
28031
  } | null;
27329
28032
  };
28033
+ export type QueryInvestmentFundsClustersQueryVariables = Exact<{
28034
+ filter?: InputMaybe<InvestmentFundFilter>;
28035
+ clusters?: InputMaybe<EntityClustersInput>;
28036
+ correlationId?: InputMaybe<Scalars['String']['input']>;
28037
+ }>;
28038
+ export type QueryInvestmentFundsClustersQuery = {
28039
+ __typename?: 'Query';
28040
+ investmentFunds?: {
28041
+ __typename?: 'InvestmentFundResults';
28042
+ results?: Array<{
28043
+ __typename?: 'InvestmentFund';
28044
+ id: string;
28045
+ name: string;
28046
+ creationDate: any;
28047
+ modifiedDate?: any | null;
28048
+ relevance?: number | null;
28049
+ state: EntityState;
28050
+ alternateNames?: Array<string | null> | null;
28051
+ uri?: any | null;
28052
+ description?: string | null;
28053
+ identifier?: string | null;
28054
+ thing?: string | null;
28055
+ amount?: any | null;
28056
+ amountCurrency?: string | null;
28057
+ fundType?: string | null;
28058
+ vintage?: number | null;
28059
+ targetSize?: any | null;
28060
+ targetSizeCurrency?: string | null;
28061
+ owner: {
28062
+ __typename?: 'Owner';
28063
+ id: string;
28064
+ };
28065
+ feeds?: Array<{
28066
+ __typename?: 'Feed';
28067
+ id: string;
28068
+ name: string;
28069
+ } | null> | null;
28070
+ links?: Array<{
28071
+ __typename?: 'LinkReference';
28072
+ uri?: any | null;
28073
+ linkType?: LinkTypes | null;
28074
+ excerpts?: string | null;
28075
+ } | null> | null;
28076
+ workflow?: {
28077
+ __typename?: 'Workflow';
28078
+ id: string;
28079
+ name: string;
28080
+ } | null;
28081
+ location?: {
28082
+ __typename?: 'Point';
28083
+ latitude?: number | null;
28084
+ longitude?: number | null;
28085
+ } | null;
28086
+ h3?: {
28087
+ __typename?: 'H3';
28088
+ h3r0?: string | null;
28089
+ h3r1?: string | null;
28090
+ h3r2?: string | null;
28091
+ h3r3?: string | null;
28092
+ h3r4?: string | null;
28093
+ h3r5?: string | null;
28094
+ h3r6?: string | null;
28095
+ h3r7?: string | null;
28096
+ h3r8?: string | null;
28097
+ h3r9?: string | null;
28098
+ h3r10?: string | null;
28099
+ h3r11?: string | null;
28100
+ h3r12?: string | null;
28101
+ h3r13?: string | null;
28102
+ h3r14?: string | null;
28103
+ h3r15?: string | null;
28104
+ } | null;
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
+ };
27330
28120
  export type QueryInvestmentFundsExpandedQueryVariables = Exact<{
27331
28121
  filter?: InputMaybe<InvestmentFundFilter>;
27332
28122
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -27744,6 +28534,87 @@ export type QueryMedicalConditionsQuery = {
27744
28534
  } | null> | null;
27745
28535
  } | null;
27746
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
+ };
27747
28618
  export type UpdateMedicalConditionMutationVariables = Exact<{
27748
28619
  medicalCondition: MedicalConditionUpdateInput;
27749
28620
  }>;
@@ -27945,25 +28816,106 @@ export type QueryMedicalContraindicationsQuery = {
27945
28816
  } | null> | null;
27946
28817
  } | null;
27947
28818
  };
27948
- export type UpdateMedicalContraindicationMutationVariables = Exact<{
27949
- medicalContraindication: MedicalContraindicationUpdateInput;
27950
- }>;
27951
- export type UpdateMedicalContraindicationMutation = {
27952
- __typename?: 'Mutation';
27953
- updateMedicalContraindication?: {
27954
- __typename?: 'MedicalContraindication';
27955
- id: string;
27956
- name: string;
27957
- } | null;
27958
- };
27959
- export type CountMedicalDevicesQueryVariables = Exact<{
27960
- filter?: InputMaybe<MedicalDeviceFilter>;
28819
+ export type QueryMedicalContraindicationsClustersQueryVariables = Exact<{
28820
+ filter?: InputMaybe<MedicalContraindicationFilter>;
28821
+ clusters?: InputMaybe<EntityClustersInput>;
27961
28822
  correlationId?: InputMaybe<Scalars['String']['input']>;
27962
28823
  }>;
27963
- export type CountMedicalDevicesQuery = {
28824
+ export type QueryMedicalContraindicationsClustersQuery = {
27964
28825
  __typename?: 'Query';
27965
- countMedicalDevices?: {
27966
- __typename?: 'CountResult';
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
+ };
28900
+ export type UpdateMedicalContraindicationMutationVariables = Exact<{
28901
+ medicalContraindication: MedicalContraindicationUpdateInput;
28902
+ }>;
28903
+ export type UpdateMedicalContraindicationMutation = {
28904
+ __typename?: 'Mutation';
28905
+ updateMedicalContraindication?: {
28906
+ __typename?: 'MedicalContraindication';
28907
+ id: string;
28908
+ name: string;
28909
+ } | null;
28910
+ };
28911
+ export type CountMedicalDevicesQueryVariables = Exact<{
28912
+ filter?: InputMaybe<MedicalDeviceFilter>;
28913
+ correlationId?: InputMaybe<Scalars['String']['input']>;
28914
+ }>;
28915
+ export type CountMedicalDevicesQuery = {
28916
+ __typename?: 'Query';
28917
+ countMedicalDevices?: {
28918
+ __typename?: 'CountResult';
27967
28919
  count?: any | null;
27968
28920
  } | null;
27969
28921
  };
@@ -28146,6 +29098,87 @@ export type QueryMedicalDevicesQuery = {
28146
29098
  } | null> | null;
28147
29099
  } | null;
28148
29100
  };
29101
+ export type QueryMedicalDevicesClustersQueryVariables = Exact<{
29102
+ filter?: InputMaybe<MedicalDeviceFilter>;
29103
+ clusters?: InputMaybe<EntityClustersInput>;
29104
+ correlationId?: InputMaybe<Scalars['String']['input']>;
29105
+ }>;
29106
+ export type QueryMedicalDevicesClustersQuery = {
29107
+ __typename?: 'Query';
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
+ };
28149
29182
  export type UpdateMedicalDeviceMutationVariables = Exact<{
28150
29183
  medicalDevice: MedicalDeviceUpdateInput;
28151
29184
  }>;
@@ -28347,6 +29380,87 @@ export type QueryMedicalDrugsQuery = {
28347
29380
  } | null> | null;
28348
29381
  } | null;
28349
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
+ };
28350
29464
  export type UpdateMedicalDrugMutationVariables = Exact<{
28351
29465
  medicalDrug: MedicalDrugUpdateInput;
28352
29466
  }>;
@@ -28548,6 +29662,87 @@ export type QueryMedicalDrugClassesQuery = {
28548
29662
  } | null> | null;
28549
29663
  } | null;
28550
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
+ };
28551
29746
  export type UpdateMedicalDrugClassMutationVariables = Exact<{
28552
29747
  medicalDrugClass: MedicalDrugClassUpdateInput;
28553
29748
  }>;
@@ -28749,6 +29944,87 @@ export type QueryMedicalGuidelinesQuery = {
28749
29944
  } | null> | null;
28750
29945
  } | null;
28751
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
+ };
28752
30028
  export type UpdateMedicalGuidelineMutationVariables = Exact<{
28753
30029
  medicalGuideline: MedicalGuidelineUpdateInput;
28754
30030
  }>;
@@ -28950,6 +30226,87 @@ export type QueryMedicalIndicationsQuery = {
28950
30226
  } | null> | null;
28951
30227
  } | null;
28952
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
+ };
28953
30310
  export type UpdateMedicalIndicationMutationVariables = Exact<{
28954
30311
  medicalIndication: MedicalIndicationUpdateInput;
28955
30312
  }>;
@@ -29083,11 +30440,80 @@ export type GetMedicalProcedureQuery = {
29083
30440
  } | null;
29084
30441
  } | null;
29085
30442
  };
29086
- export type QueryMedicalProceduresQueryVariables = Exact<{
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;
30509
+ } | null;
30510
+ };
30511
+ export type QueryMedicalProceduresClustersQueryVariables = Exact<{
29087
30512
  filter?: InputMaybe<MedicalProcedureFilter>;
30513
+ clusters?: InputMaybe<EntityClustersInput>;
29088
30514
  correlationId?: InputMaybe<Scalars['String']['input']>;
29089
30515
  }>;
29090
- export type QueryMedicalProceduresQuery = {
30516
+ export type QueryMedicalProceduresClustersQuery = {
29091
30517
  __typename?: 'Query';
29092
30518
  medicalProcedures?: {
29093
30519
  __typename?: 'MedicalProcedureResults';
@@ -29149,6 +30575,18 @@ export type QueryMedicalProceduresQuery = {
29149
30575
  h3r15?: string | null;
29150
30576
  } | null;
29151
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;
29152
30590
  } | null;
29153
30591
  };
29154
30592
  export type UpdateMedicalProcedureMutationVariables = Exact<{
@@ -29368,6 +30806,95 @@ export type QueryMedicalStudiesQuery = {
29368
30806
  } | null> | null;
29369
30807
  } | null;
29370
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
+ };
29371
30898
  export type UpdateMedicalStudyMutationVariables = Exact<{
29372
30899
  medicalStudy: MedicalStudyUpdateInput;
29373
30900
  }>;
@@ -29569,6 +31096,87 @@ export type QueryMedicalTestsQuery = {
29569
31096
  } | null> | null;
29570
31097
  } | null;
29571
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
+ };
29572
31180
  export type UpdateMedicalTestMutationVariables = Exact<{
29573
31181
  medicalTest: MedicalTestUpdateInput;
29574
31182
  }>;
@@ -29671,42 +31279,111 @@ export type GetMedicalTherapyQuery = {
29671
31279
  linkType?: LinkTypes | null;
29672
31280
  excerpts?: string | null;
29673
31281
  } | null> | null;
29674
- workflow?: {
29675
- __typename?: 'Workflow';
29676
- id: string;
29677
- name: string;
29678
- } | null;
29679
- location?: {
29680
- __typename?: 'Point';
29681
- latitude?: number | null;
29682
- longitude?: number | null;
29683
- } | null;
29684
- h3?: {
29685
- __typename?: 'H3';
29686
- h3r0?: string | null;
29687
- h3r1?: string | null;
29688
- h3r2?: string | null;
29689
- h3r3?: string | null;
29690
- h3r4?: string | null;
29691
- h3r5?: string | null;
29692
- h3r6?: string | null;
29693
- h3r7?: string | null;
29694
- h3r8?: string | null;
29695
- h3r9?: string | null;
29696
- h3r10?: string | null;
29697
- h3r11?: string | null;
29698
- h3r12?: string | null;
29699
- h3r13?: string | null;
29700
- h3r14?: string | null;
29701
- h3r15?: string | null;
29702
- } | null;
31282
+ workflow?: {
31283
+ __typename?: 'Workflow';
31284
+ id: string;
31285
+ name: string;
31286
+ } | null;
31287
+ location?: {
31288
+ __typename?: 'Point';
31289
+ latitude?: number | null;
31290
+ longitude?: number | null;
31291
+ } | null;
31292
+ h3?: {
31293
+ __typename?: 'H3';
31294
+ h3r0?: string | null;
31295
+ h3r1?: string | null;
31296
+ h3r2?: string | null;
31297
+ h3r3?: string | null;
31298
+ h3r4?: string | null;
31299
+ h3r5?: string | null;
31300
+ h3r6?: string | null;
31301
+ h3r7?: string | null;
31302
+ h3r8?: string | null;
31303
+ h3r9?: string | null;
31304
+ h3r10?: string | null;
31305
+ h3r11?: string | null;
31306
+ h3r12?: string | null;
31307
+ h3r13?: string | null;
31308
+ h3r14?: string | null;
31309
+ h3r15?: string | null;
31310
+ } | null;
31311
+ } | null;
31312
+ };
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;
29703
31379
  } | null;
29704
31380
  };
29705
- export type QueryMedicalTherapiesQueryVariables = Exact<{
31381
+ export type QueryMedicalTherapiesClustersQueryVariables = Exact<{
29706
31382
  filter?: InputMaybe<MedicalTherapyFilter>;
31383
+ clusters?: InputMaybe<EntityClustersInput>;
29707
31384
  correlationId?: InputMaybe<Scalars['String']['input']>;
29708
31385
  }>;
29709
- export type QueryMedicalTherapiesQuery = {
31386
+ export type QueryMedicalTherapiesClustersQuery = {
29710
31387
  __typename?: 'Query';
29711
31388
  medicalTherapies?: {
29712
31389
  __typename?: 'MedicalTherapyResults';
@@ -29768,6 +31445,18 @@ export type QueryMedicalTherapiesQuery = {
29768
31445
  h3r15?: string | null;
29769
31446
  } | null;
29770
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;
29771
31460
  } | null;
29772
31461
  };
29773
31462
  export type UpdateMedicalTherapyMutationVariables = Exact<{
@@ -29815,6 +31504,95 @@ export type DeleteObservationMutation = {
29815
31504
  state: EntityState;
29816
31505
  } | null;
29817
31506
  };
31507
+ export type MatchEntityMutationVariables = Exact<{
31508
+ observable: ObservableInput;
31509
+ candidates: Array<EntityReferenceInput> | EntityReferenceInput;
31510
+ specification?: InputMaybe<EntityReferenceInput>;
31511
+ correlationId?: InputMaybe<Scalars['String']['input']>;
31512
+ }>;
31513
+ export type MatchEntityMutation = {
31514
+ __typename?: 'Mutation';
31515
+ matchEntity?: {
31516
+ __typename?: 'MatchEntityResult';
31517
+ relevance?: number | null;
31518
+ reasoning?: string | null;
31519
+ reference?: {
31520
+ __typename?: 'ObservationReference';
31521
+ type: ObservableTypes;
31522
+ observable: {
31523
+ __typename?: 'NamedEntityReference';
31524
+ id: string;
31525
+ name?: string | null;
31526
+ };
31527
+ } | null;
31528
+ } | null;
31529
+ };
31530
+ export type ResolveEntitiesMutationVariables = Exact<{
31531
+ type: ObservableTypes;
31532
+ entities: Array<EntityReferenceInput> | EntityReferenceInput;
31533
+ threshold?: InputMaybe<Scalars['Float']['input']>;
31534
+ specification?: InputMaybe<EntityReferenceInput>;
31535
+ correlationId?: InputMaybe<Scalars['String']['input']>;
31536
+ }>;
31537
+ export type ResolveEntitiesMutation = {
31538
+ __typename?: 'Mutation';
31539
+ resolveEntities?: {
31540
+ __typename?: 'ResolveEntitiesResult';
31541
+ type: ObservableTypes;
31542
+ relevance: number;
31543
+ reasoning: string;
31544
+ primary?: {
31545
+ __typename?: 'EntityReference';
31546
+ id: string;
31547
+ } | null;
31548
+ resolved?: Array<{
31549
+ __typename?: 'EntityReference';
31550
+ id: string;
31551
+ }> | null;
31552
+ primaryCluster?: {
31553
+ __typename?: 'EntityCluster';
31554
+ similarity?: number | null;
31555
+ entities: Array<{
31556
+ __typename?: 'NamedEntityReference';
31557
+ id: string;
31558
+ name?: string | null;
31559
+ }>;
31560
+ } | null;
31561
+ outlierClusters?: Array<{
31562
+ __typename?: 'EntityCluster';
31563
+ similarity?: number | null;
31564
+ entities: Array<{
31565
+ __typename?: 'NamedEntityReference';
31566
+ id: string;
31567
+ name?: string | null;
31568
+ }>;
31569
+ }> | null;
31570
+ } | null;
31571
+ };
31572
+ export type ResolveEntityMutationVariables = Exact<{
31573
+ type: ObservableTypes;
31574
+ source: EntityReferenceInput;
31575
+ target: EntityReferenceInput;
31576
+ specification?: InputMaybe<EntityReferenceInput>;
31577
+ correlationId?: InputMaybe<Scalars['String']['input']>;
31578
+ }>;
31579
+ export type ResolveEntityMutation = {
31580
+ __typename?: 'Mutation';
31581
+ resolveEntity?: {
31582
+ __typename?: 'ResolveEntityResult';
31583
+ relevance?: number | null;
31584
+ reasoning?: string | null;
31585
+ reference?: {
31586
+ __typename?: 'ObservationReference';
31587
+ type: ObservableTypes;
31588
+ observable: {
31589
+ __typename?: 'NamedEntityReference';
31590
+ id: string;
31591
+ name?: string | null;
31592
+ };
31593
+ } | null;
31594
+ } | null;
31595
+ };
29818
31596
  export type UpdateObservationMutationVariables = Exact<{
29819
31597
  observation: ObservationUpdateInput;
29820
31598
  }>;
@@ -30108,6 +31886,104 @@ export type QueryOrganizationsQuery = {
30108
31886
  } | null> | null;
30109
31887
  } | null;
30110
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
+ };
30111
31987
  export type QueryOrganizationsExpandedQueryVariables = Exact<{
30112
31988
  filter?: InputMaybe<OrganizationFilter>;
30113
31989
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -30440,11 +32316,96 @@ export type GetPersonQuery = {
30440
32316
  } | null> | null;
30441
32317
  } | null;
30442
32318
  };
30443
- export type QueryPersonsQueryVariables = Exact<{
32319
+ export type QueryPersonsQueryVariables = Exact<{
32320
+ filter?: InputMaybe<PersonFilter>;
32321
+ correlationId?: InputMaybe<Scalars['String']['input']>;
32322
+ }>;
32323
+ export type QueryPersonsQuery = {
32324
+ __typename?: 'Query';
32325
+ persons?: {
32326
+ __typename?: 'PersonResults';
32327
+ results?: Array<{
32328
+ __typename?: 'Person';
32329
+ id: string;
32330
+ name: string;
32331
+ creationDate: any;
32332
+ modifiedDate?: any | null;
32333
+ relevance?: number | null;
32334
+ state: EntityState;
32335
+ alternateNames?: Array<string | null> | null;
32336
+ uri?: any | null;
32337
+ description?: string | null;
32338
+ identifier?: string | null;
32339
+ thing?: string | null;
32340
+ email?: string | null;
32341
+ givenName?: string | null;
32342
+ familyName?: string | null;
32343
+ phoneNumber?: string | null;
32344
+ birthDate?: any | null;
32345
+ title?: string | null;
32346
+ occupation?: string | null;
32347
+ education?: string | null;
32348
+ owner: {
32349
+ __typename?: 'Owner';
32350
+ id: string;
32351
+ };
32352
+ feeds?: Array<{
32353
+ __typename?: 'Feed';
32354
+ id: string;
32355
+ name: string;
32356
+ } | null> | null;
32357
+ links?: Array<{
32358
+ __typename?: 'LinkReference';
32359
+ uri?: any | null;
32360
+ linkType?: LinkTypes | null;
32361
+ excerpts?: string | null;
32362
+ } | null> | null;
32363
+ workflow?: {
32364
+ __typename?: 'Workflow';
32365
+ id: string;
32366
+ name: string;
32367
+ } | null;
32368
+ location?: {
32369
+ __typename?: 'Point';
32370
+ latitude?: number | null;
32371
+ longitude?: number | null;
32372
+ } | null;
32373
+ h3?: {
32374
+ __typename?: 'H3';
32375
+ h3r0?: string | null;
32376
+ h3r1?: string | null;
32377
+ h3r2?: string | null;
32378
+ h3r3?: string | null;
32379
+ h3r4?: string | null;
32380
+ h3r5?: string | null;
32381
+ h3r6?: string | null;
32382
+ h3r7?: string | null;
32383
+ h3r8?: string | null;
32384
+ h3r9?: string | null;
32385
+ h3r10?: string | null;
32386
+ h3r11?: string | null;
32387
+ h3r12?: string | null;
32388
+ h3r13?: string | null;
32389
+ h3r14?: string | null;
32390
+ h3r15?: string | null;
32391
+ } | null;
32392
+ address?: {
32393
+ __typename?: 'Address';
32394
+ streetAddress?: string | null;
32395
+ city?: string | null;
32396
+ region?: string | null;
32397
+ country?: string | null;
32398
+ postalCode?: string | null;
32399
+ } | null;
32400
+ } | null> | null;
32401
+ } | null;
32402
+ };
32403
+ export type QueryPersonsClustersQueryVariables = Exact<{
30444
32404
  filter?: InputMaybe<PersonFilter>;
32405
+ clusters?: InputMaybe<EntityClustersInput>;
30445
32406
  correlationId?: InputMaybe<Scalars['String']['input']>;
30446
32407
  }>;
30447
- export type QueryPersonsQuery = {
32408
+ export type QueryPersonsClustersQuery = {
30448
32409
  __typename?: 'Query';
30449
32410
  persons?: {
30450
32411
  __typename?: 'PersonResults';
@@ -30522,6 +32483,18 @@ export type QueryPersonsQuery = {
30522
32483
  postalCode?: string | null;
30523
32484
  } | null;
30524
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;
30525
32498
  } | null;
30526
32499
  };
30527
32500
  export type QueryPersonsExpandedQueryVariables = Exact<{
@@ -30884,6 +32857,98 @@ export type QueryPlacesQuery = {
30884
32857
  } | null> | null;
30885
32858
  } | null;
30886
32859
  };
32860
+ export type QueryPlacesClustersQueryVariables = Exact<{
32861
+ filter?: InputMaybe<PlaceFilter>;
32862
+ clusters?: InputMaybe<EntityClustersInput>;
32863
+ correlationId?: InputMaybe<Scalars['String']['input']>;
32864
+ }>;
32865
+ export type QueryPlacesClustersQuery = {
32866
+ __typename?: 'Query';
32867
+ places?: {
32868
+ __typename?: 'PlaceResults';
32869
+ results?: Array<{
32870
+ __typename?: 'Place';
32871
+ id: string;
32872
+ name: string;
32873
+ creationDate: any;
32874
+ modifiedDate?: any | null;
32875
+ relevance?: number | null;
32876
+ state: EntityState;
32877
+ alternateNames?: Array<string | null> | null;
32878
+ uri?: any | null;
32879
+ description?: string | null;
32880
+ identifier?: string | null;
32881
+ thing?: string | null;
32882
+ telephone?: string | null;
32883
+ openingHours?: string | null;
32884
+ priceRange?: string | null;
32885
+ owner: {
32886
+ __typename?: 'Owner';
32887
+ id: string;
32888
+ };
32889
+ feeds?: Array<{
32890
+ __typename?: 'Feed';
32891
+ id: string;
32892
+ name: string;
32893
+ } | null> | null;
32894
+ links?: Array<{
32895
+ __typename?: 'LinkReference';
32896
+ uri?: any | null;
32897
+ linkType?: LinkTypes | null;
32898
+ excerpts?: string | null;
32899
+ } | null> | null;
32900
+ workflow?: {
32901
+ __typename?: 'Workflow';
32902
+ id: string;
32903
+ name: string;
32904
+ } | null;
32905
+ location?: {
32906
+ __typename?: 'Point';
32907
+ latitude?: number | null;
32908
+ longitude?: number | null;
32909
+ } | null;
32910
+ h3?: {
32911
+ __typename?: 'H3';
32912
+ h3r0?: string | null;
32913
+ h3r1?: string | null;
32914
+ h3r2?: string | null;
32915
+ h3r3?: string | null;
32916
+ h3r4?: string | null;
32917
+ h3r5?: string | null;
32918
+ h3r6?: string | null;
32919
+ h3r7?: string | null;
32920
+ h3r8?: string | null;
32921
+ h3r9?: string | null;
32922
+ h3r10?: string | null;
32923
+ h3r11?: string | null;
32924
+ h3r12?: string | null;
32925
+ h3r13?: string | null;
32926
+ h3r14?: string | null;
32927
+ h3r15?: string | null;
32928
+ } | null;
32929
+ address?: {
32930
+ __typename?: 'Address';
32931
+ streetAddress?: string | null;
32932
+ city?: string | null;
32933
+ region?: string | null;
32934
+ country?: string | null;
32935
+ postalCode?: string | null;
32936
+ } | null;
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;
32950
+ } | null;
32951
+ };
30887
32952
  export type UpdatePlaceMutationVariables = Exact<{
30888
32953
  place: PlaceUpdateInput;
30889
32954
  }>;
@@ -31132,6 +33197,104 @@ export type QueryProductsQuery = {
31132
33197
  } | null> | null;
31133
33198
  } | null;
31134
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
+ };
31135
33298
  export type UpdateProductMutationVariables = Exact<{
31136
33299
  product: ProductUpdateInput;
31137
33300
  }>;
@@ -31436,11 +33599,20 @@ export type GetRepoQuery = {
31436
33599
  __typename?: 'Query';
31437
33600
  repo?: {
31438
33601
  __typename?: 'Repo';
33602
+ id: string;
33603
+ name: string;
33604
+ creationDate: any;
33605
+ modifiedDate?: any | null;
33606
+ state: EntityState;
31439
33607
  alternateNames?: Array<string | null> | null;
31440
33608
  uri?: any | null;
31441
33609
  description?: string | null;
31442
33610
  identifier?: string | null;
31443
33611
  thing?: string | null;
33612
+ owner: {
33613
+ __typename?: 'Owner';
33614
+ id: string;
33615
+ };
31444
33616
  feeds?: Array<{
31445
33617
  __typename?: 'Feed';
31446
33618
  id: string;
@@ -31452,28 +33624,131 @@ export type GetRepoQuery = {
31452
33624
  linkType?: LinkTypes | null;
31453
33625
  excerpts?: string | null;
31454
33626
  } | null> | null;
31455
- workflow?: {
31456
- __typename?: 'Workflow';
31457
- id: string;
31458
- name: string;
31459
- } | null;
33627
+ workflow?: {
33628
+ __typename?: 'Workflow';
33629
+ id: string;
33630
+ name: string;
33631
+ } | null;
33632
+ location?: {
33633
+ __typename?: 'Point';
33634
+ latitude?: number | null;
33635
+ longitude?: number | null;
33636
+ } | null;
33637
+ h3?: {
33638
+ __typename?: 'H3';
33639
+ h3r0?: string | null;
33640
+ h3r1?: string | null;
33641
+ h3r2?: string | null;
33642
+ h3r3?: string | null;
33643
+ h3r4?: string | null;
33644
+ h3r5?: string | null;
33645
+ h3r6?: string | null;
33646
+ h3r7?: string | null;
33647
+ h3r8?: string | null;
33648
+ h3r9?: string | null;
33649
+ h3r10?: string | null;
33650
+ h3r11?: string | null;
33651
+ h3r12?: string | null;
33652
+ h3r13?: string | null;
33653
+ h3r14?: string | null;
33654
+ h3r15?: string | null;
33655
+ } | null;
33656
+ } | null;
33657
+ };
33658
+ export type QueryReposQueryVariables = Exact<{
33659
+ filter?: InputMaybe<RepoFilter>;
33660
+ correlationId?: InputMaybe<Scalars['String']['input']>;
33661
+ }>;
33662
+ export type QueryReposQuery = {
33663
+ __typename?: 'Query';
33664
+ repos?: {
33665
+ __typename?: 'RepoResults';
33666
+ results?: Array<{
33667
+ __typename?: 'Repo';
33668
+ id: string;
33669
+ name: string;
33670
+ creationDate: any;
33671
+ modifiedDate?: any | null;
33672
+ relevance?: number | null;
33673
+ state: EntityState;
33674
+ alternateNames?: Array<string | null> | null;
33675
+ uri?: any | null;
33676
+ description?: string | null;
33677
+ identifier?: string | null;
33678
+ thing?: string | null;
33679
+ owner: {
33680
+ __typename?: 'Owner';
33681
+ id: string;
33682
+ };
33683
+ feeds?: Array<{
33684
+ __typename?: 'Feed';
33685
+ id: string;
33686
+ name: string;
33687
+ } | null> | null;
33688
+ links?: Array<{
33689
+ __typename?: 'LinkReference';
33690
+ uri?: any | null;
33691
+ linkType?: LinkTypes | null;
33692
+ excerpts?: string | null;
33693
+ } | null> | null;
33694
+ workflow?: {
33695
+ __typename?: 'Workflow';
33696
+ id: string;
33697
+ name: string;
33698
+ } | null;
33699
+ location?: {
33700
+ __typename?: 'Point';
33701
+ latitude?: number | null;
33702
+ longitude?: number | null;
33703
+ } | null;
33704
+ h3?: {
33705
+ __typename?: 'H3';
33706
+ h3r0?: string | null;
33707
+ h3r1?: string | null;
33708
+ h3r2?: string | null;
33709
+ h3r3?: string | null;
33710
+ h3r4?: string | null;
33711
+ h3r5?: string | null;
33712
+ h3r6?: string | null;
33713
+ h3r7?: string | null;
33714
+ h3r8?: string | null;
33715
+ h3r9?: string | null;
33716
+ h3r10?: string | null;
33717
+ h3r11?: string | null;
33718
+ h3r12?: string | null;
33719
+ h3r13?: string | null;
33720
+ h3r14?: string | null;
33721
+ h3r15?: string | null;
33722
+ } | null;
33723
+ } | null> | null;
31460
33724
  } | null;
31461
33725
  };
31462
- export type QueryReposQueryVariables = Exact<{
33726
+ export type QueryReposClustersQueryVariables = Exact<{
31463
33727
  filter?: InputMaybe<RepoFilter>;
33728
+ clusters?: InputMaybe<EntityClustersInput>;
31464
33729
  correlationId?: InputMaybe<Scalars['String']['input']>;
31465
33730
  }>;
31466
- export type QueryReposQuery = {
33731
+ export type QueryReposClustersQuery = {
31467
33732
  __typename?: 'Query';
31468
33733
  repos?: {
31469
33734
  __typename?: 'RepoResults';
31470
33735
  results?: Array<{
31471
33736
  __typename?: 'Repo';
33737
+ id: string;
33738
+ name: string;
33739
+ creationDate: any;
33740
+ modifiedDate?: any | null;
33741
+ relevance?: number | null;
33742
+ state: EntityState;
31472
33743
  alternateNames?: Array<string | null> | null;
31473
33744
  uri?: any | null;
31474
33745
  description?: string | null;
31475
33746
  identifier?: string | null;
31476
33747
  thing?: string | null;
33748
+ owner: {
33749
+ __typename?: 'Owner';
33750
+ id: string;
33751
+ };
31477
33752
  feeds?: Array<{
31478
33753
  __typename?: 'Feed';
31479
33754
  id: string;
@@ -31490,7 +33765,43 @@ export type QueryReposQuery = {
31490
33765
  id: string;
31491
33766
  name: string;
31492
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;
31493
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;
31494
33805
  } | null;
31495
33806
  };
31496
33807
  export type UpdateRepoMutationVariables = Exact<{
@@ -31602,13 +33913,22 @@ export type GetSoftwareQuery = {
31602
33913
  __typename?: 'Query';
31603
33914
  software?: {
31604
33915
  __typename?: 'Software';
31605
- releaseDate?: any | null;
31606
- developer?: string | null;
33916
+ id: string;
33917
+ name: string;
33918
+ creationDate: any;
33919
+ modifiedDate?: any | null;
33920
+ state: EntityState;
31607
33921
  alternateNames?: Array<string | null> | null;
31608
33922
  uri?: any | null;
31609
33923
  description?: string | null;
31610
33924
  identifier?: string | null;
31611
33925
  thing?: string | null;
33926
+ releaseDate?: any | null;
33927
+ developer?: string | null;
33928
+ owner: {
33929
+ __typename?: 'Owner';
33930
+ id: string;
33931
+ };
31612
33932
  feeds?: Array<{
31613
33933
  __typename?: 'Feed';
31614
33934
  id: string;
@@ -31625,6 +33945,30 @@ export type GetSoftwareQuery = {
31625
33945
  id: string;
31626
33946
  name: string;
31627
33947
  } | null;
33948
+ location?: {
33949
+ __typename?: 'Point';
33950
+ latitude?: number | null;
33951
+ longitude?: number | null;
33952
+ } | null;
33953
+ h3?: {
33954
+ __typename?: 'H3';
33955
+ h3r0?: string | null;
33956
+ h3r1?: string | null;
33957
+ h3r2?: string | null;
33958
+ h3r3?: string | null;
33959
+ h3r4?: string | null;
33960
+ h3r5?: string | null;
33961
+ h3r6?: string | null;
33962
+ h3r7?: string | null;
33963
+ h3r8?: string | null;
33964
+ h3r9?: string | null;
33965
+ h3r10?: string | null;
33966
+ h3r11?: string | null;
33967
+ h3r12?: string | null;
33968
+ h3r13?: string | null;
33969
+ h3r14?: string | null;
33970
+ h3r15?: string | null;
33971
+ } | null;
31628
33972
  } | null;
31629
33973
  };
31630
33974
  export type QuerySoftwaresQueryVariables = Exact<{
@@ -31637,13 +33981,94 @@ export type QuerySoftwaresQuery = {
31637
33981
  __typename?: 'SoftwareResults';
31638
33982
  results?: Array<{
31639
33983
  __typename?: 'Software';
33984
+ id: string;
33985
+ name: string;
33986
+ creationDate: any;
33987
+ modifiedDate?: any | null;
33988
+ relevance?: number | null;
33989
+ state: EntityState;
33990
+ alternateNames?: Array<string | null> | null;
33991
+ uri?: any | null;
33992
+ description?: string | null;
33993
+ identifier?: string | null;
33994
+ thing?: string | null;
31640
33995
  releaseDate?: any | null;
31641
33996
  developer?: string | null;
33997
+ owner: {
33998
+ __typename?: 'Owner';
33999
+ id: string;
34000
+ };
34001
+ feeds?: Array<{
34002
+ __typename?: 'Feed';
34003
+ id: string;
34004
+ name: string;
34005
+ } | null> | null;
34006
+ links?: Array<{
34007
+ __typename?: 'LinkReference';
34008
+ uri?: any | null;
34009
+ linkType?: LinkTypes | null;
34010
+ excerpts?: string | null;
34011
+ } | null> | null;
34012
+ workflow?: {
34013
+ __typename?: 'Workflow';
34014
+ id: string;
34015
+ name: string;
34016
+ } | null;
34017
+ location?: {
34018
+ __typename?: 'Point';
34019
+ latitude?: number | null;
34020
+ longitude?: number | null;
34021
+ } | null;
34022
+ h3?: {
34023
+ __typename?: 'H3';
34024
+ h3r0?: string | null;
34025
+ h3r1?: string | null;
34026
+ h3r2?: string | null;
34027
+ h3r3?: string | null;
34028
+ h3r4?: string | null;
34029
+ h3r5?: string | null;
34030
+ h3r6?: string | null;
34031
+ h3r7?: string | null;
34032
+ h3r8?: string | null;
34033
+ h3r9?: string | null;
34034
+ h3r10?: string | null;
34035
+ h3r11?: string | null;
34036
+ h3r12?: string | null;
34037
+ h3r13?: string | null;
34038
+ h3r14?: string | null;
34039
+ h3r15?: string | null;
34040
+ } | null;
34041
+ } | null> | null;
34042
+ } | null;
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;
31642
34061
  alternateNames?: Array<string | null> | null;
31643
34062
  uri?: any | null;
31644
34063
  description?: string | null;
31645
34064
  identifier?: string | null;
31646
34065
  thing?: string | null;
34066
+ releaseDate?: any | null;
34067
+ developer?: string | null;
34068
+ owner: {
34069
+ __typename?: 'Owner';
34070
+ id: string;
34071
+ };
31647
34072
  feeds?: Array<{
31648
34073
  __typename?: 'Feed';
31649
34074
  id: string;
@@ -31660,7 +34085,43 @@ export type QuerySoftwaresQuery = {
31660
34085
  id: string;
31661
34086
  name: string;
31662
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;
31663
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;
31664
34125
  } | null;
31665
34126
  };
31666
34127
  export type UpdateSoftwareMutationVariables = Exact<{
@@ -34322,6 +36783,15 @@ export type CreateWorkflowMutation = {
34322
36783
  } | null;
34323
36784
  } | null;
34324
36785
  } | null> | null;
36786
+ entityResolution?: {
36787
+ __typename?: 'EntityResolutionStrategy';
36788
+ strategy?: EntityResolutionStrategyTypes | null;
36789
+ threshold?: number | null;
36790
+ specification?: {
36791
+ __typename?: 'EntityReference';
36792
+ id: string;
36793
+ } | null;
36794
+ } | null;
34325
36795
  } | null;
34326
36796
  storage?: {
34327
36797
  __typename?: 'StorageWorkflowStage';
@@ -34654,6 +37124,15 @@ export type GetWorkflowQuery = {
34654
37124
  } | null;
34655
37125
  } | null;
34656
37126
  } | null> | null;
37127
+ entityResolution?: {
37128
+ __typename?: 'EntityResolutionStrategy';
37129
+ strategy?: EntityResolutionStrategyTypes | null;
37130
+ threshold?: number | null;
37131
+ specification?: {
37132
+ __typename?: 'EntityReference';
37133
+ id: string;
37134
+ } | null;
37135
+ } | null;
34657
37136
  } | null;
34658
37137
  storage?: {
34659
37138
  __typename?: 'StorageWorkflowStage';
@@ -34953,6 +37432,15 @@ export type QueryWorkflowsQuery = {
34953
37432
  } | null;
34954
37433
  } | null;
34955
37434
  } | null> | null;
37435
+ entityResolution?: {
37436
+ __typename?: 'EntityResolutionStrategy';
37437
+ strategy?: EntityResolutionStrategyTypes | null;
37438
+ threshold?: number | null;
37439
+ specification?: {
37440
+ __typename?: 'EntityReference';
37441
+ id: string;
37442
+ } | null;
37443
+ } | null;
34956
37444
  } | null;
34957
37445
  storage?: {
34958
37446
  __typename?: 'StorageWorkflowStage';
@@ -35243,6 +37731,15 @@ export type UpdateWorkflowMutation = {
35243
37731
  } | null;
35244
37732
  } | null;
35245
37733
  } | null> | null;
37734
+ entityResolution?: {
37735
+ __typename?: 'EntityResolutionStrategy';
37736
+ strategy?: EntityResolutionStrategyTypes | null;
37737
+ threshold?: number | null;
37738
+ specification?: {
37739
+ __typename?: 'EntityReference';
37740
+ id: string;
37741
+ } | null;
37742
+ } | null;
35246
37743
  } | null;
35247
37744
  storage?: {
35248
37745
  __typename?: 'StorageWorkflowStage';
@@ -35532,6 +38029,15 @@ export type UpsertWorkflowMutation = {
35532
38029
  } | null;
35533
38030
  } | null;
35534
38031
  } | null> | null;
38032
+ entityResolution?: {
38033
+ __typename?: 'EntityResolutionStrategy';
38034
+ strategy?: EntityResolutionStrategyTypes | null;
38035
+ threshold?: number | null;
38036
+ specification?: {
38037
+ __typename?: 'EntityReference';
38038
+ id: string;
38039
+ } | null;
38040
+ } | null;
35535
38041
  } | null;
35536
38042
  storage?: {
35537
38043
  __typename?: 'StorageWorkflowStage';