graphlit-client 1.0.20251127001 → 1.0.20251129001

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. */
@@ -6005,6 +6110,8 @@ export type GraphFilter = {
6005
6110
  createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
6006
6111
  /** Filter by entity creation date range. */
6007
6112
  creationDateRange?: InputMaybe<DateRangeFilter>;
6113
+ /** Disable project inheritance, only return user-scoped entities. */
6114
+ disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
6008
6115
  /** Filter by source feeds. */
6009
6116
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
6010
6117
  /** Filter by H3 hexagon index. */
@@ -6689,6 +6796,8 @@ export type Investment = {
6689
6796
  proRataRights?: Maybe<Scalars['Boolean']['output']>;
6690
6797
  /** The relevance score of the investment. */
6691
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>;
6692
6801
  /** The total round size. */
6693
6802
  roundSize?: Maybe<Scalars['Decimal']['output']>;
6694
6803
  /** The currency code for the round size. */
@@ -6834,6 +6943,8 @@ export type InvestmentFund = {
6834
6943
  parentFund?: Maybe<InvestmentFund>;
6835
6944
  /** The relevance score of the investmentfund. */
6836
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>;
6837
6948
  /** The state of the investmentfund (i.e. created, enabled). */
6838
6949
  state: EntityState;
6839
6950
  /** The target fund size. */
@@ -6956,8 +7067,12 @@ export type InvestmentFundInput = {
6956
7067
  /** Represents investment fund query results. */
6957
7068
  export type InvestmentFundResults = {
6958
7069
  __typename?: 'InvestmentFundResults';
7070
+ /** The investment fund clusters based on embedding similarity. */
7071
+ clusters?: Maybe<EntityClusters>;
6959
7072
  /** The investment fund facets. */
6960
7073
  facets?: Maybe<Array<Maybe<InvestmentFundFacet>>>;
7074
+ /** The investment fund H3 facets. */
7075
+ h3?: Maybe<H3Facets>;
6961
7076
  /** The investment fund results. */
6962
7077
  results?: Maybe<Array<Maybe<InvestmentFund>>>;
6963
7078
  };
@@ -7042,8 +7157,12 @@ export type InvestmentInput = {
7042
7157
  /** Represents investment query results. */
7043
7158
  export type InvestmentResults = {
7044
7159
  __typename?: 'InvestmentResults';
7160
+ /** The investment clusters based on embedding similarity. */
7161
+ clusters?: Maybe<EntityClusters>;
7045
7162
  /** The investment facets. */
7046
7163
  facets?: Maybe<Array<Maybe<InvestmentFacet>>>;
7164
+ /** The investment H3 facets. */
7165
+ h3?: Maybe<H3Facets>;
7047
7166
  /** The investment results. */
7048
7167
  results?: Maybe<Array<Maybe<Investment>>>;
7049
7168
  };
@@ -7639,6 +7758,16 @@ export declare enum MailSensitivity {
7639
7758
  /** Private sensitivity */
7640
7759
  Private = "PRIVATE"
7641
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
+ };
7642
7771
  /** Represents a medical condition. */
7643
7772
  export type MedicalCondition = {
7644
7773
  __typename?: 'MedicalCondition';
@@ -7672,6 +7801,8 @@ export type MedicalCondition = {
7672
7801
  owner: Owner;
7673
7802
  /** The relevance score of the medicalcondition. */
7674
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>;
7675
7806
  /** The state of the medicalcondition (i.e. created, enabled). */
7676
7807
  state: EntityState;
7677
7808
  /** The JSON-LD value of the medicalcondition. */
@@ -7776,8 +7907,12 @@ export type MedicalConditionInput = {
7776
7907
  /** Represents medical condition query results. */
7777
7908
  export type MedicalConditionResults = {
7778
7909
  __typename?: 'MedicalConditionResults';
7910
+ /** The medical condition clusters based on embedding similarity. */
7911
+ clusters?: Maybe<EntityClusters>;
7779
7912
  /** The medical condition facets. */
7780
7913
  facets?: Maybe<Array<Maybe<MedicalConditionFacet>>>;
7914
+ /** The medical condition H3 facets. */
7915
+ h3?: Maybe<H3Facets>;
7781
7916
  /** The medical condition results. */
7782
7917
  results?: Maybe<Array<Maybe<MedicalCondition>>>;
7783
7918
  };
@@ -7831,6 +7966,8 @@ export type MedicalContraindication = {
7831
7966
  owner: Owner;
7832
7967
  /** The relevance score of the medicalcontraindication. */
7833
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>;
7834
7971
  /** The state of the medicalcontraindication (i.e. created, enabled). */
7835
7972
  state: EntityState;
7836
7973
  /** The JSON-LD value of the medicalcontraindication. */
@@ -7935,8 +8072,12 @@ export type MedicalContraindicationInput = {
7935
8072
  /** Represents medical contraindication query results. */
7936
8073
  export type MedicalContraindicationResults = {
7937
8074
  __typename?: 'MedicalContraindicationResults';
8075
+ /** The medical contraindication clusters based on embedding similarity. */
8076
+ clusters?: Maybe<EntityClusters>;
7938
8077
  /** The medical contraindication facets. */
7939
8078
  facets?: Maybe<Array<Maybe<MedicalContraindicationFacet>>>;
8079
+ /** The medical contraindication H3 facets. */
8080
+ h3?: Maybe<H3Facets>;
7940
8081
  /** The medical contraindication results. */
7941
8082
  results?: Maybe<Array<Maybe<MedicalContraindication>>>;
7942
8083
  };
@@ -7990,6 +8131,8 @@ export type MedicalDevice = {
7990
8131
  owner: Owner;
7991
8132
  /** The relevance score of the medicaldevice. */
7992
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>;
7993
8136
  /** The state of the medicaldevice (i.e. created, enabled). */
7994
8137
  state: EntityState;
7995
8138
  /** The JSON-LD value of the medicaldevice. */
@@ -8094,8 +8237,12 @@ export type MedicalDeviceInput = {
8094
8237
  /** Represents medical device query results. */
8095
8238
  export type MedicalDeviceResults = {
8096
8239
  __typename?: 'MedicalDeviceResults';
8240
+ /** The medical device clusters based on embedding similarity. */
8241
+ clusters?: Maybe<EntityClusters>;
8097
8242
  /** The medical device facets. */
8098
8243
  facets?: Maybe<Array<Maybe<MedicalDeviceFacet>>>;
8244
+ /** The medical device H3 facets. */
8245
+ h3?: Maybe<H3Facets>;
8099
8246
  /** The medical device results. */
8100
8247
  results?: Maybe<Array<Maybe<MedicalDevice>>>;
8101
8248
  };
@@ -8149,6 +8296,8 @@ export type MedicalDrug = {
8149
8296
  owner: Owner;
8150
8297
  /** The relevance score of the medicaldrug. */
8151
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>;
8152
8301
  /** The state of the medicaldrug (i.e. created, enabled). */
8153
8302
  state: EntityState;
8154
8303
  /** The JSON-LD value of the medicaldrug. */
@@ -8191,6 +8340,8 @@ export type MedicalDrugClass = {
8191
8340
  owner: Owner;
8192
8341
  /** The relevance score of the medicaldrugclass. */
8193
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>;
8194
8345
  /** The state of the medicaldrugclass (i.e. created, enabled). */
8195
8346
  state: EntityState;
8196
8347
  /** The JSON-LD value of the medicaldrugclass. */
@@ -8295,8 +8446,12 @@ export type MedicalDrugClassInput = {
8295
8446
  /** Represents medical drug class query results. */
8296
8447
  export type MedicalDrugClassResults = {
8297
8448
  __typename?: 'MedicalDrugClassResults';
8449
+ /** The medical drug class clusters based on embedding similarity. */
8450
+ clusters?: Maybe<EntityClusters>;
8298
8451
  /** The medical drug class facets. */
8299
8452
  facets?: Maybe<Array<Maybe<MedicalDrugClassFacet>>>;
8453
+ /** The medical drug class H3 facets. */
8454
+ h3?: Maybe<H3Facets>;
8300
8455
  /** The medical drug class results. */
8301
8456
  results?: Maybe<Array<Maybe<MedicalDrugClass>>>;
8302
8457
  };
@@ -8412,8 +8567,12 @@ export type MedicalDrugInput = {
8412
8567
  /** Represents medical drug query results. */
8413
8568
  export type MedicalDrugResults = {
8414
8569
  __typename?: 'MedicalDrugResults';
8570
+ /** The medical drug clusters based on embedding similarity. */
8571
+ clusters?: Maybe<EntityClusters>;
8415
8572
  /** The medical drug facets. */
8416
8573
  facets?: Maybe<Array<Maybe<MedicalDrugFacet>>>;
8574
+ /** The medical drug H3 facets. */
8575
+ h3?: Maybe<H3Facets>;
8417
8576
  /** The medical drug results. */
8418
8577
  results?: Maybe<Array<Maybe<MedicalDrug>>>;
8419
8578
  };
@@ -8467,6 +8626,8 @@ export type MedicalGuideline = {
8467
8626
  owner: Owner;
8468
8627
  /** The relevance score of the medicalguideline. */
8469
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>;
8470
8631
  /** The state of the medicalguideline (i.e. created, enabled). */
8471
8632
  state: EntityState;
8472
8633
  /** The JSON-LD value of the medicalguideline. */
@@ -8571,8 +8732,12 @@ export type MedicalGuidelineInput = {
8571
8732
  /** Represents medical guideline query results. */
8572
8733
  export type MedicalGuidelineResults = {
8573
8734
  __typename?: 'MedicalGuidelineResults';
8735
+ /** The medical guideline clusters based on embedding similarity. */
8736
+ clusters?: Maybe<EntityClusters>;
8574
8737
  /** The medical guideline facets. */
8575
8738
  facets?: Maybe<Array<Maybe<MedicalGuidelineFacet>>>;
8739
+ /** The medical guideline H3 facets. */
8740
+ h3?: Maybe<H3Facets>;
8576
8741
  /** The medical guideline results. */
8577
8742
  results?: Maybe<Array<Maybe<MedicalGuideline>>>;
8578
8743
  };
@@ -8626,6 +8791,8 @@ export type MedicalIndication = {
8626
8791
  owner: Owner;
8627
8792
  /** The relevance score of the medicalindication. */
8628
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>;
8629
8796
  /** The state of the medicalindication (i.e. created, enabled). */
8630
8797
  state: EntityState;
8631
8798
  /** The JSON-LD value of the medicalindication. */
@@ -8730,8 +8897,12 @@ export type MedicalIndicationInput = {
8730
8897
  /** Represents medical indication query results. */
8731
8898
  export type MedicalIndicationResults = {
8732
8899
  __typename?: 'MedicalIndicationResults';
8900
+ /** The medical indication clusters based on embedding similarity. */
8901
+ clusters?: Maybe<EntityClusters>;
8733
8902
  /** The medical indication facets. */
8734
8903
  facets?: Maybe<Array<Maybe<MedicalIndicationFacet>>>;
8904
+ /** The medical indication H3 facets. */
8905
+ h3?: Maybe<H3Facets>;
8735
8906
  /** The medical indication results. */
8736
8907
  results?: Maybe<Array<Maybe<MedicalIndication>>>;
8737
8908
  };
@@ -8785,6 +8956,8 @@ export type MedicalProcedure = {
8785
8956
  owner: Owner;
8786
8957
  /** The relevance score of the medicalprocedure. */
8787
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>;
8788
8961
  /** The state of the medicalprocedure (i.e. created, enabled). */
8789
8962
  state: EntityState;
8790
8963
  /** The JSON-LD value of the medicalprocedure. */
@@ -8889,8 +9062,12 @@ export type MedicalProcedureInput = {
8889
9062
  /** Represents medical procedure query results. */
8890
9063
  export type MedicalProcedureResults = {
8891
9064
  __typename?: 'MedicalProcedureResults';
9065
+ /** The medical procedure clusters based on embedding similarity. */
9066
+ clusters?: Maybe<EntityClusters>;
8892
9067
  /** The medical procedure facets. */
8893
9068
  facets?: Maybe<Array<Maybe<MedicalProcedureFacet>>>;
9069
+ /** The medical procedure H3 facets. */
9070
+ h3?: Maybe<H3Facets>;
8894
9071
  /** The medical procedure results. */
8895
9072
  results?: Maybe<Array<Maybe<MedicalProcedure>>>;
8896
9073
  };
@@ -8946,6 +9123,8 @@ export type MedicalStudy = {
8946
9123
  owner: Owner;
8947
9124
  /** The relevance score of the medicalstudy. */
8948
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>;
8949
9128
  /** The state of the medicalstudy (i.e. created, enabled). */
8950
9129
  state: EntityState;
8951
9130
  /** The JSON-LD value of the medicalstudy. */
@@ -9052,6 +9231,8 @@ export type MedicalStudyInput = {
9052
9231
  /** Represents medical study query results. */
9053
9232
  export type MedicalStudyResults = {
9054
9233
  __typename?: 'MedicalStudyResults';
9234
+ /** The medical study clusters based on embedding similarity. */
9235
+ clusters?: Maybe<EntityClusters>;
9055
9236
  /** The medical study facets. */
9056
9237
  facets?: Maybe<Array<Maybe<MedicalStudyFacet>>>;
9057
9238
  /** The medical study H3 facets. */
@@ -9111,6 +9292,8 @@ export type MedicalTest = {
9111
9292
  owner: Owner;
9112
9293
  /** The relevance score of the medicaltest. */
9113
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>;
9114
9297
  /** The state of the medicaltest (i.e. created, enabled). */
9115
9298
  state: EntityState;
9116
9299
  /** The JSON-LD value of the medicaltest. */
@@ -9215,8 +9398,12 @@ export type MedicalTestInput = {
9215
9398
  /** Represents medical test query results. */
9216
9399
  export type MedicalTestResults = {
9217
9400
  __typename?: 'MedicalTestResults';
9401
+ /** The medical test clusters based on embedding similarity. */
9402
+ clusters?: Maybe<EntityClusters>;
9218
9403
  /** The medical test facets. */
9219
9404
  facets?: Maybe<Array<Maybe<MedicalTestFacet>>>;
9405
+ /** The medical test H3 facets. */
9406
+ h3?: Maybe<H3Facets>;
9220
9407
  /** The medical test results. */
9221
9408
  results?: Maybe<Array<Maybe<MedicalTest>>>;
9222
9409
  };
@@ -9270,6 +9457,8 @@ export type MedicalTherapy = {
9270
9457
  owner: Owner;
9271
9458
  /** The relevance score of the medicaltherapy. */
9272
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>;
9273
9462
  /** The state of the medicaltherapy (i.e. created, enabled). */
9274
9463
  state: EntityState;
9275
9464
  /** The JSON-LD value of the medicaltherapy. */
@@ -9374,8 +9563,12 @@ export type MedicalTherapyInput = {
9374
9563
  /** Represents medical therapy query results. */
9375
9564
  export type MedicalTherapyResults = {
9376
9565
  __typename?: 'MedicalTherapyResults';
9566
+ /** The medical therapy clusters based on embedding similarity. */
9567
+ clusters?: Maybe<EntityClusters>;
9377
9568
  /** The medical therapy facets. */
9378
9569
  facets?: Maybe<Array<Maybe<MedicalTherapyFacet>>>;
9570
+ /** The medical therapy H3 facets. */
9571
+ h3?: Maybe<H3Facets>;
9379
9572
  /** The medical therapy results. */
9380
9573
  results?: Maybe<Array<Maybe<MedicalTherapy>>>;
9381
9574
  };
@@ -10455,6 +10648,8 @@ export type Mutation = {
10455
10648
  enrichProducts?: Maybe<Array<Maybe<Product>>>;
10456
10649
  /** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
10457
10650
  extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
10651
+ /** Extracts observable entities from text. */
10652
+ extractObservables?: Maybe<EntityExtractionMetadata>;
10458
10653
  /** Extracts data using tool calling, from text. */
10459
10654
  extractText?: Maybe<Array<Maybe<ExtractCompletion>>>;
10460
10655
  /** Format a conversation LLM user prompt. */
@@ -10482,6 +10677,8 @@ export type Mutation = {
10482
10677
  ingestTextBatch?: Maybe<Array<Maybe<Content>>>;
10483
10678
  /** Ingests content by URI. Supports files and webpages. */
10484
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>;
10485
10682
  /** Opens an existing collection. */
10486
10683
  openCollection?: Maybe<Collection>;
10487
10684
  /** Opens an existing conversation. */
@@ -10507,6 +10704,10 @@ export type Mutation = {
10507
10704
  removeContentsFromCollection?: Maybe<Collection>;
10508
10705
  /** Research contents via web research based on provided filter criteria. */
10509
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>;
10510
10711
  /** Restarts workflow on contents based on the provided filter criteria. */
10511
10712
  restartAllContents?: Maybe<Array<Maybe<Content>>>;
10512
10713
  /** Restarts workflow on content. */
@@ -11186,6 +11387,13 @@ export type MutationExtractContentsArgs = {
11186
11387
  specification?: InputMaybe<EntityReferenceInput>;
11187
11388
  tools: Array<ToolDefinitionInput>;
11188
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
+ };
11189
11397
  export type MutationExtractTextArgs = {
11190
11398
  correlationId?: InputMaybe<Scalars['String']['input']>;
11191
11399
  prompt: Scalars['String']['input'];
@@ -11294,6 +11502,12 @@ export type MutationIngestUriArgs = {
11294
11502
  uri: Scalars['URL']['input'];
11295
11503
  workflow?: InputMaybe<EntityReferenceInput>;
11296
11504
  };
11505
+ export type MutationMatchEntityArgs = {
11506
+ candidates: Array<EntityReferenceInput>;
11507
+ correlationId?: InputMaybe<Scalars['String']['input']>;
11508
+ observable: ObservableInput;
11509
+ specification?: InputMaybe<EntityReferenceInput>;
11510
+ };
11297
11511
  export type MutationOpenCollectionArgs = {
11298
11512
  id: Scalars['ID']['input'];
11299
11513
  };
@@ -11376,6 +11590,20 @@ export type MutationResearchContentsArgs = {
11376
11590
  summarySpecification?: InputMaybe<EntityReferenceInput>;
11377
11591
  workflow?: InputMaybe<EntityReferenceInput>;
11378
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
+ };
11379
11607
  export type MutationRestartAllContentsArgs = {
11380
11608
  correlationId?: InputMaybe<Scalars['String']['input']>;
11381
11609
  filter?: InputMaybe<ContentFilter>;
@@ -11710,6 +11938,18 @@ export declare enum OAuthProviders {
11710
11938
  /** Dropbox authentication provider */
11711
11939
  Dropbox = "DROPBOX"
11712
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
+ };
11713
11953
  /** Represents an observable facet. */
11714
11954
  export type ObservableFacet = {
11715
11955
  __typename?: 'ObservableFacet';
@@ -11718,6 +11958,29 @@ export type ObservableFacet = {
11718
11958
  /** The observed entity type. */
11719
11959
  type?: Maybe<ObservableTypes>;
11720
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
+ };
11721
11984
  /** Represents observable results. */
11722
11985
  export type ObservableResults = {
11723
11986
  __typename?: 'ObservableResults';
@@ -11909,6 +12172,22 @@ export type ObservationUpdateInput = {
11909
12172
  /** The observed entity type. */
11910
12173
  type?: InputMaybe<ObservableTypes>;
11911
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
+ };
11912
12191
  export declare enum OccurrenceTypes {
11913
12192
  Image = "IMAGE",
11914
12193
  Text = "TEXT",
@@ -12412,6 +12691,8 @@ export type Organization = {
12412
12691
  parentOrganization?: Maybe<Organization>;
12413
12692
  /** The relevance score of the organization. */
12414
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>;
12415
12696
  /** The revenue of the organization. */
12416
12697
  revenue?: Maybe<Scalars['Decimal']['output']>;
12417
12698
  /** The currency of the revenue of the organization. */
@@ -12546,6 +12827,8 @@ export type OrganizationInput = {
12546
12827
  /** Represents organization query results. */
12547
12828
  export type OrganizationResults = {
12548
12829
  __typename?: 'OrganizationResults';
12830
+ /** The organization clusters based on embedding similarity. */
12831
+ clusters?: Maybe<EntityClusters>;
12549
12832
  /** The organization facets. */
12550
12833
  facets?: Maybe<Array<Maybe<OrganizationFacet>>>;
12551
12834
  /** The organization H3 facets. */
@@ -12794,6 +13077,8 @@ export type Person = {
12794
13077
  phoneNumber?: Maybe<Scalars['String']['output']>;
12795
13078
  /** The relevance score of the person. */
12796
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>;
12797
13082
  /** The state of the person (i.e. created, enabled). */
12798
13083
  state: EntityState;
12799
13084
  /** The JSON-LD value of the person. */
@@ -12955,6 +13240,8 @@ export type PersonReferenceInput = {
12955
13240
  /** Represents person query results. */
12956
13241
  export type PersonResults = {
12957
13242
  __typename?: 'PersonResults';
13243
+ /** The person clusters based on embedding similarity. */
13244
+ clusters?: Maybe<EntityClusters>;
12958
13245
  /** The person facets. */
12959
13246
  facets?: Maybe<Array<Maybe<PersonFacet>>>;
12960
13247
  /** The person H3 facets. */
@@ -13036,6 +13323,8 @@ export type Place = {
13036
13323
  priceRange?: Maybe<Scalars['String']['output']>;
13037
13324
  /** The relevance score of the place. */
13038
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>;
13039
13328
  /** The state of the place (i.e. created, enabled). */
13040
13329
  state: EntityState;
13041
13330
  /** The telephone number of the place. */
@@ -13150,6 +13439,8 @@ export type PlaceInput = {
13150
13439
  /** Represents place query results. */
13151
13440
  export type PlaceResults = {
13152
13441
  __typename?: 'PlaceResults';
13442
+ /** The place clusters based on embedding similarity. */
13443
+ clusters?: Maybe<EntityClusters>;
13153
13444
  /** The place facets. */
13154
13445
  facets?: Maybe<Array<Maybe<PlaceFacet>>>;
13155
13446
  /** The place H3 facets. */
@@ -13361,6 +13652,8 @@ export type Product = {
13361
13652
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
13362
13653
  /** The relevance score of the product. */
13363
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>;
13364
13657
  /** The product SKU. */
13365
13658
  sku?: Maybe<Scalars['String']['output']>;
13366
13659
  /** The state of the product (i.e. created, enabled). */
@@ -13503,6 +13796,8 @@ export type ProductInput = {
13503
13796
  /** Represents product query results. */
13504
13797
  export type ProductResults = {
13505
13798
  __typename?: 'ProductResults';
13799
+ /** The product clusters based on embedding similarity. */
13800
+ clusters?: Maybe<EntityClusters>;
13506
13801
  /** The product facets. */
13507
13802
  facets?: Maybe<Array<Maybe<ProductFacet>>>;
13508
13803
  /** The product results. */
@@ -14587,6 +14882,7 @@ export type QueryEventArgs = {
14587
14882
  id: Scalars['ID']['input'];
14588
14883
  };
14589
14884
  export type QueryEventsArgs = {
14885
+ clusters?: InputMaybe<EntityClustersInput>;
14590
14886
  correlationId?: InputMaybe<Scalars['String']['input']>;
14591
14887
  facets?: InputMaybe<Array<EventFacetInput>>;
14592
14888
  filter?: InputMaybe<EventFilter>;
@@ -14628,11 +14924,13 @@ export type QueryInvestmentFundArgs = {
14628
14924
  id: Scalars['ID']['input'];
14629
14925
  };
14630
14926
  export type QueryInvestmentFundsArgs = {
14927
+ clusters?: InputMaybe<EntityClustersInput>;
14631
14928
  correlationId?: InputMaybe<Scalars['String']['input']>;
14632
14929
  facets?: InputMaybe<Array<InvestmentFundFacetInput>>;
14633
14930
  filter?: InputMaybe<InvestmentFundFilter>;
14634
14931
  };
14635
14932
  export type QueryInvestmentsArgs = {
14933
+ clusters?: InputMaybe<EntityClustersInput>;
14636
14934
  correlationId?: InputMaybe<Scalars['String']['input']>;
14637
14935
  facets?: InputMaybe<Array<InvestmentFacetInput>>;
14638
14936
  filter?: InputMaybe<InvestmentFilter>;
@@ -14682,6 +14980,7 @@ export type QueryMedicalConditionArgs = {
14682
14980
  id: Scalars['ID']['input'];
14683
14981
  };
14684
14982
  export type QueryMedicalConditionsArgs = {
14983
+ clusters?: InputMaybe<EntityClustersInput>;
14685
14984
  correlationId?: InputMaybe<Scalars['String']['input']>;
14686
14985
  facets?: InputMaybe<Array<MedicalConditionFacetInput>>;
14687
14986
  filter?: InputMaybe<MedicalConditionFilter>;
@@ -14691,6 +14990,7 @@ export type QueryMedicalContraindicationArgs = {
14691
14990
  id: Scalars['ID']['input'];
14692
14991
  };
14693
14992
  export type QueryMedicalContraindicationsArgs = {
14993
+ clusters?: InputMaybe<EntityClustersInput>;
14694
14994
  correlationId?: InputMaybe<Scalars['String']['input']>;
14695
14995
  facets?: InputMaybe<Array<MedicalContraindicationFacetInput>>;
14696
14996
  filter?: InputMaybe<MedicalContraindicationFilter>;
@@ -14700,6 +15000,7 @@ export type QueryMedicalDeviceArgs = {
14700
15000
  id: Scalars['ID']['input'];
14701
15001
  };
14702
15002
  export type QueryMedicalDevicesArgs = {
15003
+ clusters?: InputMaybe<EntityClustersInput>;
14703
15004
  correlationId?: InputMaybe<Scalars['String']['input']>;
14704
15005
  facets?: InputMaybe<Array<MedicalDeviceFacetInput>>;
14705
15006
  filter?: InputMaybe<MedicalDeviceFilter>;
@@ -14713,11 +15014,13 @@ export type QueryMedicalDrugClassArgs = {
14713
15014
  id: Scalars['ID']['input'];
14714
15015
  };
14715
15016
  export type QueryMedicalDrugClassesArgs = {
15017
+ clusters?: InputMaybe<EntityClustersInput>;
14716
15018
  correlationId?: InputMaybe<Scalars['String']['input']>;
14717
15019
  facets?: InputMaybe<Array<MedicalDrugClassFacetInput>>;
14718
15020
  filter?: InputMaybe<MedicalDrugClassFilter>;
14719
15021
  };
14720
15022
  export type QueryMedicalDrugsArgs = {
15023
+ clusters?: InputMaybe<EntityClustersInput>;
14721
15024
  correlationId?: InputMaybe<Scalars['String']['input']>;
14722
15025
  facets?: InputMaybe<Array<MedicalDrugFacetInput>>;
14723
15026
  filter?: InputMaybe<MedicalDrugFilter>;
@@ -14727,6 +15030,7 @@ export type QueryMedicalGuidelineArgs = {
14727
15030
  id: Scalars['ID']['input'];
14728
15031
  };
14729
15032
  export type QueryMedicalGuidelinesArgs = {
15033
+ clusters?: InputMaybe<EntityClustersInput>;
14730
15034
  correlationId?: InputMaybe<Scalars['String']['input']>;
14731
15035
  facets?: InputMaybe<Array<MedicalGuidelineFacetInput>>;
14732
15036
  filter?: InputMaybe<MedicalGuidelineFilter>;
@@ -14736,6 +15040,7 @@ export type QueryMedicalIndicationArgs = {
14736
15040
  id: Scalars['ID']['input'];
14737
15041
  };
14738
15042
  export type QueryMedicalIndicationsArgs = {
15043
+ clusters?: InputMaybe<EntityClustersInput>;
14739
15044
  correlationId?: InputMaybe<Scalars['String']['input']>;
14740
15045
  facets?: InputMaybe<Array<MedicalIndicationFacetInput>>;
14741
15046
  filter?: InputMaybe<MedicalIndicationFilter>;
@@ -14745,11 +15050,13 @@ export type QueryMedicalProcedureArgs = {
14745
15050
  id: Scalars['ID']['input'];
14746
15051
  };
14747
15052
  export type QueryMedicalProceduresArgs = {
15053
+ clusters?: InputMaybe<EntityClustersInput>;
14748
15054
  correlationId?: InputMaybe<Scalars['String']['input']>;
14749
15055
  facets?: InputMaybe<Array<MedicalProcedureFacetInput>>;
14750
15056
  filter?: InputMaybe<MedicalProcedureFilter>;
14751
15057
  };
14752
15058
  export type QueryMedicalStudiesArgs = {
15059
+ clusters?: InputMaybe<EntityClustersInput>;
14753
15060
  correlationId?: InputMaybe<Scalars['String']['input']>;
14754
15061
  facets?: InputMaybe<Array<MedicalStudyFacetInput>>;
14755
15062
  filter?: InputMaybe<MedicalStudyFilter>;
@@ -14763,11 +15070,13 @@ export type QueryMedicalTestArgs = {
14763
15070
  id: Scalars['ID']['input'];
14764
15071
  };
14765
15072
  export type QueryMedicalTestsArgs = {
15073
+ clusters?: InputMaybe<EntityClustersInput>;
14766
15074
  correlationId?: InputMaybe<Scalars['String']['input']>;
14767
15075
  facets?: InputMaybe<Array<MedicalTestFacetInput>>;
14768
15076
  filter?: InputMaybe<MedicalTestFilter>;
14769
15077
  };
14770
15078
  export type QueryMedicalTherapiesArgs = {
15079
+ clusters?: InputMaybe<EntityClustersInput>;
14771
15080
  correlationId?: InputMaybe<Scalars['String']['input']>;
14772
15081
  facets?: InputMaybe<Array<MedicalTherapyFacetInput>>;
14773
15082
  filter?: InputMaybe<MedicalTherapyFilter>;
@@ -14813,6 +15122,7 @@ export type QueryOrganizationArgs = {
14813
15122
  id: Scalars['ID']['input'];
14814
15123
  };
14815
15124
  export type QueryOrganizationsArgs = {
15125
+ clusters?: InputMaybe<EntityClustersInput>;
14816
15126
  correlationId?: InputMaybe<Scalars['String']['input']>;
14817
15127
  facets?: InputMaybe<Array<OrganizationFacetInput>>;
14818
15128
  filter?: InputMaybe<OrganizationFilter>;
@@ -14822,6 +15132,7 @@ export type QueryPersonArgs = {
14822
15132
  id: Scalars['ID']['input'];
14823
15133
  };
14824
15134
  export type QueryPersonsArgs = {
15135
+ clusters?: InputMaybe<EntityClustersInput>;
14825
15136
  correlationId?: InputMaybe<Scalars['String']['input']>;
14826
15137
  facets?: InputMaybe<Array<PersonFacetInput>>;
14827
15138
  filter?: InputMaybe<PersonFilter>;
@@ -14831,6 +15142,7 @@ export type QueryPlaceArgs = {
14831
15142
  id: Scalars['ID']['input'];
14832
15143
  };
14833
15144
  export type QueryPlacesArgs = {
15145
+ clusters?: InputMaybe<EntityClustersInput>;
14834
15146
  correlationId?: InputMaybe<Scalars['String']['input']>;
14835
15147
  facets?: InputMaybe<Array<PlaceFacetInput>>;
14836
15148
  filter?: InputMaybe<PlaceFilter>;
@@ -14840,6 +15152,7 @@ export type QueryProductArgs = {
14840
15152
  id: Scalars['ID']['input'];
14841
15153
  };
14842
15154
  export type QueryProductsArgs = {
15155
+ clusters?: InputMaybe<EntityClustersInput>;
14843
15156
  correlationId?: InputMaybe<Scalars['String']['input']>;
14844
15157
  facets?: InputMaybe<Array<ProductFacetInput>>;
14845
15158
  filter?: InputMaybe<ProductFilter>;
@@ -14856,6 +15169,7 @@ export type QueryRepoArgs = {
14856
15169
  id: Scalars['ID']['input'];
14857
15170
  };
14858
15171
  export type QueryReposArgs = {
15172
+ clusters?: InputMaybe<EntityClustersInput>;
14859
15173
  correlationId?: InputMaybe<Scalars['String']['input']>;
14860
15174
  facets?: InputMaybe<Array<RepoFacetInput>>;
14861
15175
  filter?: InputMaybe<RepoFilter>;
@@ -14885,6 +15199,7 @@ export type QuerySoftwareArgs = {
14885
15199
  id: Scalars['ID']['input'];
14886
15200
  };
14887
15201
  export type QuerySoftwaresArgs = {
15202
+ clusters?: InputMaybe<EntityClustersInput>;
14888
15203
  correlationId?: InputMaybe<Scalars['String']['input']>;
14889
15204
  facets?: InputMaybe<Array<SoftwareFacetInput>>;
14890
15205
  filter?: InputMaybe<SoftwareFilter>;
@@ -15230,18 +15545,26 @@ export type Repo = {
15230
15545
  __typename?: 'Repo';
15231
15546
  /** The alternate names of the repo. */
15232
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']>;
15233
15550
  /** The creation date of the repo. */
15234
15551
  creationDate: Scalars['DateTime']['output'];
15235
15552
  /** The repo description. */
15236
15553
  description?: Maybe<Scalars['String']['output']>;
15554
+ /** The EPSG code for spatial reference of the repo. */
15555
+ epsgCode?: Maybe<Scalars['Int']['output']>;
15237
15556
  /** The feeds that discovered this repo. */
15238
15557
  feeds?: Maybe<Array<Maybe<Feed>>>;
15558
+ /** The H3 index of the repo. */
15559
+ h3?: Maybe<H3>;
15239
15560
  /** The ID of the repo. */
15240
15561
  id: Scalars['ID']['output'];
15241
15562
  /** The repo external identifier. */
15242
15563
  identifier?: Maybe<Scalars['String']['output']>;
15243
15564
  /** The extracted hyperlinks. */
15244
15565
  links?: Maybe<Array<Maybe<LinkReference>>>;
15566
+ /** The geo-location of the repo. */
15567
+ location?: Maybe<Point>;
15245
15568
  /** The modified date of the repo. */
15246
15569
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
15247
15570
  /** The name of the repo. */
@@ -15252,6 +15575,8 @@ export type Repo = {
15252
15575
  project: EntityReference;
15253
15576
  /** The relevance score of the repo. */
15254
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>;
15255
15580
  /** The state of the repo (i.e. created, enabled). */
15256
15581
  state: EntityState;
15257
15582
  /** The JSON-LD value of the repo. */
@@ -15340,10 +15665,14 @@ export type RepoFilter = {
15340
15665
  };
15341
15666
  /** Represents a code repository. */
15342
15667
  export type RepoInput = {
15668
+ /** The repo geo-boundary, as GeoJSON Feature with Polygon geometry. */
15669
+ boundary?: InputMaybe<Scalars['String']['input']>;
15343
15670
  /** The repo description. */
15344
15671
  description?: InputMaybe<Scalars['String']['input']>;
15345
15672
  /** The repo external identifier. */
15346
15673
  identifier?: InputMaybe<Scalars['String']['input']>;
15674
+ /** The repo geo-location. */
15675
+ location?: InputMaybe<PointInput>;
15347
15676
  /** The name of the repo. */
15348
15677
  name: Scalars['String']['input'];
15349
15678
  /** The repo URI. */
@@ -15352,6 +15681,8 @@ export type RepoInput = {
15352
15681
  /** Represents repo query results. */
15353
15682
  export type RepoResults = {
15354
15683
  __typename?: 'RepoResults';
15684
+ /** The repo clusters based on embedding similarity. */
15685
+ clusters?: Maybe<EntityClusters>;
15355
15686
  /** The repo facets. */
15356
15687
  facets?: Maybe<Array<Maybe<RepoFacet>>>;
15357
15688
  /** The repo results. */
@@ -15359,12 +15690,16 @@ export type RepoResults = {
15359
15690
  };
15360
15691
  /** Represents a code repository. */
15361
15692
  export type RepoUpdateInput = {
15693
+ /** The repo geo-boundary, as GeoJSON Feature with Polygon geometry. */
15694
+ boundary?: InputMaybe<Scalars['String']['input']>;
15362
15695
  /** The repo description. */
15363
15696
  description?: InputMaybe<Scalars['String']['input']>;
15364
15697
  /** The ID of the repo to update. */
15365
15698
  id: Scalars['ID']['input'];
15366
15699
  /** The repo external identifier. */
15367
15700
  identifier?: InputMaybe<Scalars['String']['input']>;
15701
+ /** The repo geo-location. */
15702
+ location?: InputMaybe<PointInput>;
15368
15703
  /** The name of the repo. */
15369
15704
  name?: InputMaybe<Scalars['String']['input']>;
15370
15705
  /** The repo URI. */
@@ -15435,6 +15770,34 @@ export type ResearchFeedPropertiesUpdateInput = {
15435
15770
  /** Research feed service type, i.e. Parallel. */
15436
15771
  type?: InputMaybe<FeedServiceTypes>;
15437
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
+ };
15438
15801
  /** Resource connector type */
15439
15802
  export declare enum ResourceConnectorTypes {
15440
15803
  /** Amazon Web Services */
@@ -15934,20 +16297,28 @@ export type Software = {
15934
16297
  __typename?: 'Software';
15935
16298
  /** The alternate names of the software. */
15936
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']>;
15937
16302
  /** The creation date of the software. */
15938
16303
  creationDate: Scalars['DateTime']['output'];
15939
16304
  /** The software description. */
15940
16305
  description?: Maybe<Scalars['String']['output']>;
15941
16306
  /** The software developer. */
15942
16307
  developer?: Maybe<Scalars['String']['output']>;
16308
+ /** The EPSG code for spatial reference of the software. */
16309
+ epsgCode?: Maybe<Scalars['Int']['output']>;
15943
16310
  /** The feeds that discovered this software. */
15944
16311
  feeds?: Maybe<Array<Maybe<Feed>>>;
16312
+ /** The H3 index of the software. */
16313
+ h3?: Maybe<H3>;
15945
16314
  /** The ID of the software. */
15946
16315
  id: Scalars['ID']['output'];
15947
16316
  /** The software external identifier. */
15948
16317
  identifier?: Maybe<Scalars['String']['output']>;
15949
16318
  /** The extracted hyperlinks. */
15950
16319
  links?: Maybe<Array<Maybe<LinkReference>>>;
16320
+ /** The geo-location of the software. */
16321
+ location?: Maybe<Point>;
15951
16322
  /** The modified date of the software. */
15952
16323
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
15953
16324
  /** The name of the software. */
@@ -15960,6 +16331,8 @@ export type Software = {
15960
16331
  releaseDate?: Maybe<Scalars['DateTime']['output']>;
15961
16332
  /** The relevance score of the software. */
15962
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>;
15963
16336
  /** The state of the software (i.e. created, enabled). */
15964
16337
  state: EntityState;
15965
16338
  /** The JSON-LD value of the software. */
@@ -16048,12 +16421,16 @@ export type SoftwareFilter = {
16048
16421
  };
16049
16422
  /** Represents software. */
16050
16423
  export type SoftwareInput = {
16424
+ /** The software geo-boundary, as GeoJSON Feature with Polygon geometry. */
16425
+ boundary?: InputMaybe<Scalars['String']['input']>;
16051
16426
  /** The software description. */
16052
16427
  description?: InputMaybe<Scalars['String']['input']>;
16053
16428
  /** The software developer. */
16054
16429
  developer?: InputMaybe<Scalars['String']['input']>;
16055
16430
  /** The software external identifier. */
16056
16431
  identifier?: InputMaybe<Scalars['String']['input']>;
16432
+ /** The software geo-location. */
16433
+ location?: InputMaybe<PointInput>;
16057
16434
  /** The name of the software. */
16058
16435
  name: Scalars['String']['input'];
16059
16436
  /** The software release date. */
@@ -16064,6 +16441,8 @@ export type SoftwareInput = {
16064
16441
  /** Represents software query results. */
16065
16442
  export type SoftwareResults = {
16066
16443
  __typename?: 'SoftwareResults';
16444
+ /** The software clusters based on embedding similarity. */
16445
+ clusters?: Maybe<EntityClusters>;
16067
16446
  /** The software facets. */
16068
16447
  facets?: Maybe<Array<Maybe<SoftwareFacet>>>;
16069
16448
  /** The software results. */
@@ -16071,6 +16450,8 @@ export type SoftwareResults = {
16071
16450
  };
16072
16451
  /** Represents software. */
16073
16452
  export type SoftwareUpdateInput = {
16453
+ /** The software geo-boundary, as GeoJSON Feature with Polygon geometry. */
16454
+ boundary?: InputMaybe<Scalars['String']['input']>;
16074
16455
  /** The software description. */
16075
16456
  description?: InputMaybe<Scalars['String']['input']>;
16076
16457
  /** The software developer. */
@@ -16079,6 +16460,8 @@ export type SoftwareUpdateInput = {
16079
16460
  id: Scalars['ID']['input'];
16080
16461
  /** The software external identifier. */
16081
16462
  identifier?: InputMaybe<Scalars['String']['input']>;
16463
+ /** The software geo-location. */
16464
+ location?: InputMaybe<PointInput>;
16082
16465
  /** The name of the software. */
16083
16466
  name?: InputMaybe<Scalars['String']['input']>;
16084
16467
  /** The software release date. */
@@ -18910,6 +19293,129 @@ export type ExtractContentsMutation = {
18910
19293
  } | null;
18911
19294
  } | null> | null;
18912
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
+ };
18913
19419
  export type ExtractTextMutationVariables = Exact<{
18914
19420
  prompt: Scalars['String']['input'];
18915
19421
  text: Scalars['String']['input'];
@@ -29813,6 +30319,95 @@ export type DeleteObservationMutation = {
29813
30319
  state: EntityState;
29814
30320
  } | null;
29815
30321
  };
30322
+ export type MatchEntityMutationVariables = Exact<{
30323
+ observable: ObservableInput;
30324
+ candidates: Array<EntityReferenceInput> | EntityReferenceInput;
30325
+ specification?: InputMaybe<EntityReferenceInput>;
30326
+ correlationId?: InputMaybe<Scalars['String']['input']>;
30327
+ }>;
30328
+ export type MatchEntityMutation = {
30329
+ __typename?: 'Mutation';
30330
+ matchEntity?: {
30331
+ __typename?: 'MatchEntityResult';
30332
+ relevance?: number | null;
30333
+ reasoning?: string | null;
30334
+ reference?: {
30335
+ __typename?: 'ObservationReference';
30336
+ type: ObservableTypes;
30337
+ observable: {
30338
+ __typename?: 'NamedEntityReference';
30339
+ id: string;
30340
+ name?: string | null;
30341
+ };
30342
+ } | null;
30343
+ } | null;
30344
+ };
30345
+ export type ResolveEntitiesMutationVariables = Exact<{
30346
+ type: ObservableTypes;
30347
+ entities: Array<EntityReferenceInput> | EntityReferenceInput;
30348
+ threshold?: InputMaybe<Scalars['Float']['input']>;
30349
+ specification?: InputMaybe<EntityReferenceInput>;
30350
+ correlationId?: InputMaybe<Scalars['String']['input']>;
30351
+ }>;
30352
+ export type ResolveEntitiesMutation = {
30353
+ __typename?: 'Mutation';
30354
+ resolveEntities?: {
30355
+ __typename?: 'ResolveEntitiesResult';
30356
+ type: ObservableTypes;
30357
+ relevance: number;
30358
+ reasoning: string;
30359
+ primary?: {
30360
+ __typename?: 'EntityReference';
30361
+ id: string;
30362
+ } | null;
30363
+ resolved?: Array<{
30364
+ __typename?: 'EntityReference';
30365
+ id: string;
30366
+ }> | null;
30367
+ primaryCluster?: {
30368
+ __typename?: 'EntityCluster';
30369
+ similarity?: number | null;
30370
+ entities: Array<{
30371
+ __typename?: 'NamedEntityReference';
30372
+ id: string;
30373
+ name?: string | null;
30374
+ }>;
30375
+ } | null;
30376
+ outlierClusters?: Array<{
30377
+ __typename?: 'EntityCluster';
30378
+ similarity?: number | null;
30379
+ entities: Array<{
30380
+ __typename?: 'NamedEntityReference';
30381
+ id: string;
30382
+ name?: string | null;
30383
+ }>;
30384
+ }> | null;
30385
+ } | null;
30386
+ };
30387
+ export type ResolveEntityMutationVariables = Exact<{
30388
+ type: ObservableTypes;
30389
+ source: EntityReferenceInput;
30390
+ target: EntityReferenceInput;
30391
+ specification?: InputMaybe<EntityReferenceInput>;
30392
+ correlationId?: InputMaybe<Scalars['String']['input']>;
30393
+ }>;
30394
+ export type ResolveEntityMutation = {
30395
+ __typename?: 'Mutation';
30396
+ resolveEntity?: {
30397
+ __typename?: 'ResolveEntityResult';
30398
+ relevance?: number | null;
30399
+ reasoning?: string | null;
30400
+ reference?: {
30401
+ __typename?: 'ObservationReference';
30402
+ type: ObservableTypes;
30403
+ observable: {
30404
+ __typename?: 'NamedEntityReference';
30405
+ id: string;
30406
+ name?: string | null;
30407
+ };
30408
+ } | null;
30409
+ } | null;
30410
+ };
29816
30411
  export type UpdateObservationMutationVariables = Exact<{
29817
30412
  observation: ObservationUpdateInput;
29818
30413
  }>;
@@ -31434,11 +32029,20 @@ export type GetRepoQuery = {
31434
32029
  __typename?: 'Query';
31435
32030
  repo?: {
31436
32031
  __typename?: 'Repo';
32032
+ id: string;
32033
+ name: string;
32034
+ creationDate: any;
32035
+ modifiedDate?: any | null;
32036
+ state: EntityState;
31437
32037
  alternateNames?: Array<string | null> | null;
31438
32038
  uri?: any | null;
31439
32039
  description?: string | null;
31440
32040
  identifier?: string | null;
31441
32041
  thing?: string | null;
32042
+ owner: {
32043
+ __typename?: 'Owner';
32044
+ id: string;
32045
+ };
31442
32046
  feeds?: Array<{
31443
32047
  __typename?: 'Feed';
31444
32048
  id: string;
@@ -31455,6 +32059,30 @@ export type GetRepoQuery = {
31455
32059
  id: string;
31456
32060
  name: string;
31457
32061
  } | null;
32062
+ location?: {
32063
+ __typename?: 'Point';
32064
+ latitude?: number | null;
32065
+ longitude?: number | null;
32066
+ } | null;
32067
+ h3?: {
32068
+ __typename?: 'H3';
32069
+ h3r0?: string | null;
32070
+ h3r1?: string | null;
32071
+ h3r2?: string | null;
32072
+ h3r3?: string | null;
32073
+ h3r4?: string | null;
32074
+ h3r5?: string | null;
32075
+ h3r6?: string | null;
32076
+ h3r7?: string | null;
32077
+ h3r8?: string | null;
32078
+ h3r9?: string | null;
32079
+ h3r10?: string | null;
32080
+ h3r11?: string | null;
32081
+ h3r12?: string | null;
32082
+ h3r13?: string | null;
32083
+ h3r14?: string | null;
32084
+ h3r15?: string | null;
32085
+ } | null;
31458
32086
  } | null;
31459
32087
  };
31460
32088
  export type QueryReposQueryVariables = Exact<{
@@ -31467,11 +32095,21 @@ export type QueryReposQuery = {
31467
32095
  __typename?: 'RepoResults';
31468
32096
  results?: Array<{
31469
32097
  __typename?: 'Repo';
32098
+ id: string;
32099
+ name: string;
32100
+ creationDate: any;
32101
+ modifiedDate?: any | null;
32102
+ relevance?: number | null;
32103
+ state: EntityState;
31470
32104
  alternateNames?: Array<string | null> | null;
31471
32105
  uri?: any | null;
31472
32106
  description?: string | null;
31473
32107
  identifier?: string | null;
31474
32108
  thing?: string | null;
32109
+ owner: {
32110
+ __typename?: 'Owner';
32111
+ id: string;
32112
+ };
31475
32113
  feeds?: Array<{
31476
32114
  __typename?: 'Feed';
31477
32115
  id: string;
@@ -31488,6 +32126,30 @@ export type QueryReposQuery = {
31488
32126
  id: string;
31489
32127
  name: string;
31490
32128
  } | null;
32129
+ location?: {
32130
+ __typename?: 'Point';
32131
+ latitude?: number | null;
32132
+ longitude?: number | null;
32133
+ } | null;
32134
+ h3?: {
32135
+ __typename?: 'H3';
32136
+ h3r0?: string | null;
32137
+ h3r1?: string | null;
32138
+ h3r2?: string | null;
32139
+ h3r3?: string | null;
32140
+ h3r4?: string | null;
32141
+ h3r5?: string | null;
32142
+ h3r6?: string | null;
32143
+ h3r7?: string | null;
32144
+ h3r8?: string | null;
32145
+ h3r9?: string | null;
32146
+ h3r10?: string | null;
32147
+ h3r11?: string | null;
32148
+ h3r12?: string | null;
32149
+ h3r13?: string | null;
32150
+ h3r14?: string | null;
32151
+ h3r15?: string | null;
32152
+ } | null;
31491
32153
  } | null> | null;
31492
32154
  } | null;
31493
32155
  };
@@ -31600,13 +32262,22 @@ export type GetSoftwareQuery = {
31600
32262
  __typename?: 'Query';
31601
32263
  software?: {
31602
32264
  __typename?: 'Software';
31603
- releaseDate?: any | null;
31604
- developer?: string | null;
32265
+ id: string;
32266
+ name: string;
32267
+ creationDate: any;
32268
+ modifiedDate?: any | null;
32269
+ state: EntityState;
31605
32270
  alternateNames?: Array<string | null> | null;
31606
32271
  uri?: any | null;
31607
32272
  description?: string | null;
31608
32273
  identifier?: string | null;
31609
32274
  thing?: string | null;
32275
+ releaseDate?: any | null;
32276
+ developer?: string | null;
32277
+ owner: {
32278
+ __typename?: 'Owner';
32279
+ id: string;
32280
+ };
31610
32281
  feeds?: Array<{
31611
32282
  __typename?: 'Feed';
31612
32283
  id: string;
@@ -31623,6 +32294,30 @@ export type GetSoftwareQuery = {
31623
32294
  id: string;
31624
32295
  name: string;
31625
32296
  } | null;
32297
+ location?: {
32298
+ __typename?: 'Point';
32299
+ latitude?: number | null;
32300
+ longitude?: number | null;
32301
+ } | null;
32302
+ h3?: {
32303
+ __typename?: 'H3';
32304
+ h3r0?: string | null;
32305
+ h3r1?: string | null;
32306
+ h3r2?: string | null;
32307
+ h3r3?: string | null;
32308
+ h3r4?: string | null;
32309
+ h3r5?: string | null;
32310
+ h3r6?: string | null;
32311
+ h3r7?: string | null;
32312
+ h3r8?: string | null;
32313
+ h3r9?: string | null;
32314
+ h3r10?: string | null;
32315
+ h3r11?: string | null;
32316
+ h3r12?: string | null;
32317
+ h3r13?: string | null;
32318
+ h3r14?: string | null;
32319
+ h3r15?: string | null;
32320
+ } | null;
31626
32321
  } | null;
31627
32322
  };
31628
32323
  export type QuerySoftwaresQueryVariables = Exact<{
@@ -31635,13 +32330,23 @@ export type QuerySoftwaresQuery = {
31635
32330
  __typename?: 'SoftwareResults';
31636
32331
  results?: Array<{
31637
32332
  __typename?: 'Software';
31638
- releaseDate?: any | null;
31639
- developer?: string | null;
32333
+ id: string;
32334
+ name: string;
32335
+ creationDate: any;
32336
+ modifiedDate?: any | null;
32337
+ relevance?: number | null;
32338
+ state: EntityState;
31640
32339
  alternateNames?: Array<string | null> | null;
31641
32340
  uri?: any | null;
31642
32341
  description?: string | null;
31643
32342
  identifier?: string | null;
31644
32343
  thing?: string | null;
32344
+ releaseDate?: any | null;
32345
+ developer?: string | null;
32346
+ owner: {
32347
+ __typename?: 'Owner';
32348
+ id: string;
32349
+ };
31645
32350
  feeds?: Array<{
31646
32351
  __typename?: 'Feed';
31647
32352
  id: string;
@@ -31658,6 +32363,30 @@ export type QuerySoftwaresQuery = {
31658
32363
  id: string;
31659
32364
  name: string;
31660
32365
  } | null;
32366
+ location?: {
32367
+ __typename?: 'Point';
32368
+ latitude?: number | null;
32369
+ longitude?: number | null;
32370
+ } | null;
32371
+ h3?: {
32372
+ __typename?: 'H3';
32373
+ h3r0?: string | null;
32374
+ h3r1?: string | null;
32375
+ h3r2?: string | null;
32376
+ h3r3?: string | null;
32377
+ h3r4?: string | null;
32378
+ h3r5?: string | null;
32379
+ h3r6?: string | null;
32380
+ h3r7?: string | null;
32381
+ h3r8?: string | null;
32382
+ h3r9?: string | null;
32383
+ h3r10?: string | null;
32384
+ h3r11?: string | null;
32385
+ h3r12?: string | null;
32386
+ h3r13?: string | null;
32387
+ h3r14?: string | null;
32388
+ h3r15?: string | null;
32389
+ } | null;
31661
32390
  } | null> | null;
31662
32391
  } | null;
31663
32392
  };
@@ -34320,6 +35049,15 @@ export type CreateWorkflowMutation = {
34320
35049
  } | null;
34321
35050
  } | null;
34322
35051
  } | null> | null;
35052
+ entityResolution?: {
35053
+ __typename?: 'EntityResolutionStrategy';
35054
+ strategy?: EntityResolutionStrategyTypes | null;
35055
+ threshold?: number | null;
35056
+ specification?: {
35057
+ __typename?: 'EntityReference';
35058
+ id: string;
35059
+ } | null;
35060
+ } | null;
34323
35061
  } | null;
34324
35062
  storage?: {
34325
35063
  __typename?: 'StorageWorkflowStage';
@@ -34652,6 +35390,15 @@ export type GetWorkflowQuery = {
34652
35390
  } | null;
34653
35391
  } | null;
34654
35392
  } | null> | null;
35393
+ entityResolution?: {
35394
+ __typename?: 'EntityResolutionStrategy';
35395
+ strategy?: EntityResolutionStrategyTypes | null;
35396
+ threshold?: number | null;
35397
+ specification?: {
35398
+ __typename?: 'EntityReference';
35399
+ id: string;
35400
+ } | null;
35401
+ } | null;
34655
35402
  } | null;
34656
35403
  storage?: {
34657
35404
  __typename?: 'StorageWorkflowStage';
@@ -34951,6 +35698,15 @@ export type QueryWorkflowsQuery = {
34951
35698
  } | null;
34952
35699
  } | null;
34953
35700
  } | null> | null;
35701
+ entityResolution?: {
35702
+ __typename?: 'EntityResolutionStrategy';
35703
+ strategy?: EntityResolutionStrategyTypes | null;
35704
+ threshold?: number | null;
35705
+ specification?: {
35706
+ __typename?: 'EntityReference';
35707
+ id: string;
35708
+ } | null;
35709
+ } | null;
34954
35710
  } | null;
34955
35711
  storage?: {
34956
35712
  __typename?: 'StorageWorkflowStage';
@@ -35241,6 +35997,15 @@ export type UpdateWorkflowMutation = {
35241
35997
  } | null;
35242
35998
  } | null;
35243
35999
  } | null> | null;
36000
+ entityResolution?: {
36001
+ __typename?: 'EntityResolutionStrategy';
36002
+ strategy?: EntityResolutionStrategyTypes | null;
36003
+ threshold?: number | null;
36004
+ specification?: {
36005
+ __typename?: 'EntityReference';
36006
+ id: string;
36007
+ } | null;
36008
+ } | null;
35244
36009
  } | null;
35245
36010
  storage?: {
35246
36011
  __typename?: 'StorageWorkflowStage';
@@ -35530,6 +36295,15 @@ export type UpsertWorkflowMutation = {
35530
36295
  } | null;
35531
36296
  } | null;
35532
36297
  } | null> | null;
36298
+ entityResolution?: {
36299
+ __typename?: 'EntityResolutionStrategy';
36300
+ strategy?: EntityResolutionStrategyTypes | null;
36301
+ threshold?: number | null;
36302
+ specification?: {
36303
+ __typename?: 'EntityReference';
36304
+ id: string;
36305
+ } | null;
36306
+ } | null;
35533
36307
  } | null;
35534
36308
  storage?: {
35535
36309
  __typename?: 'StorageWorkflowStage';