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.
@@ -1153,6 +1153,106 @@ export const ExtractContents = gql `
1153
1153
  }
1154
1154
  }
1155
1155
  `;
1156
+ export const ExtractObservables = gql `
1157
+ mutation ExtractObservables($text: String!, $textType: TextTypes, $specification: EntityReferenceInput, $observableTypes: [ObservableTypes!], $correlationId: String) {
1158
+ extractObservables(
1159
+ text: $text
1160
+ textType: $textType
1161
+ specification: $specification
1162
+ observableTypes: $observableTypes
1163
+ correlationId: $correlationId
1164
+ ) {
1165
+ labels {
1166
+ name
1167
+ metadata
1168
+ }
1169
+ categories {
1170
+ name
1171
+ metadata
1172
+ }
1173
+ persons {
1174
+ name
1175
+ metadata
1176
+ }
1177
+ organizations {
1178
+ name
1179
+ metadata
1180
+ }
1181
+ places {
1182
+ name
1183
+ metadata
1184
+ }
1185
+ events {
1186
+ name
1187
+ metadata
1188
+ }
1189
+ products {
1190
+ name
1191
+ metadata
1192
+ }
1193
+ softwares {
1194
+ name
1195
+ metadata
1196
+ }
1197
+ repos {
1198
+ name
1199
+ metadata
1200
+ }
1201
+ investments {
1202
+ name
1203
+ metadata
1204
+ }
1205
+ investmentFunds {
1206
+ name
1207
+ metadata
1208
+ }
1209
+ medicalStudies {
1210
+ name
1211
+ metadata
1212
+ }
1213
+ medicalConditions {
1214
+ name
1215
+ metadata
1216
+ }
1217
+ medicalGuidelines {
1218
+ name
1219
+ metadata
1220
+ }
1221
+ medicalDrugs {
1222
+ name
1223
+ metadata
1224
+ }
1225
+ medicalDrugClasses {
1226
+ name
1227
+ metadata
1228
+ }
1229
+ medicalIndications {
1230
+ name
1231
+ metadata
1232
+ }
1233
+ medicalContraindications {
1234
+ name
1235
+ metadata
1236
+ }
1237
+ medicalProcedures {
1238
+ name
1239
+ metadata
1240
+ }
1241
+ medicalTherapies {
1242
+ name
1243
+ metadata
1244
+ }
1245
+ medicalDevices {
1246
+ name
1247
+ metadata
1248
+ }
1249
+ medicalTests {
1250
+ name
1251
+ metadata
1252
+ }
1253
+ }
1254
+ }
1255
+ `;
1156
1256
  export const ExtractText = gql `
1157
1257
  mutation ExtractText($prompt: String!, $text: String!, $textType: TextTypes, $specification: EntityReferenceInput, $tools: [ToolDefinitionInput!]!, $correlationId: String) {
1158
1258
  extractText(
@@ -7067,6 +7167,93 @@ export const QueryEvents = gql `
7067
7167
  }
7068
7168
  }
7069
7169
  `;
7170
+ export const QueryEventsClusters = gql `
7171
+ query QueryEventsClusters($filter: EventFilter, $clusters: EntityClustersInput, $correlationId: String) {
7172
+ events(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
7173
+ results {
7174
+ id
7175
+ name
7176
+ creationDate
7177
+ modifiedDate
7178
+ relevance
7179
+ owner {
7180
+ id
7181
+ }
7182
+ state
7183
+ alternateNames
7184
+ uri
7185
+ description
7186
+ identifier
7187
+ thing
7188
+ feeds {
7189
+ id
7190
+ name
7191
+ }
7192
+ links {
7193
+ uri
7194
+ linkType
7195
+ excerpts
7196
+ }
7197
+ workflow {
7198
+ id
7199
+ name
7200
+ }
7201
+ location {
7202
+ latitude
7203
+ longitude
7204
+ }
7205
+ h3 {
7206
+ h3r0
7207
+ h3r1
7208
+ h3r2
7209
+ h3r3
7210
+ h3r4
7211
+ h3r5
7212
+ h3r6
7213
+ h3r7
7214
+ h3r8
7215
+ h3r9
7216
+ h3r10
7217
+ h3r11
7218
+ h3r12
7219
+ h3r13
7220
+ h3r14
7221
+ h3r15
7222
+ }
7223
+ address {
7224
+ streetAddress
7225
+ city
7226
+ region
7227
+ country
7228
+ postalCode
7229
+ }
7230
+ startDate
7231
+ endDate
7232
+ availabilityStartDate
7233
+ availabilityEndDate
7234
+ price
7235
+ minPrice
7236
+ maxPrice
7237
+ priceCurrency
7238
+ isAccessibleForFree
7239
+ typicalAgeRange
7240
+ organizer
7241
+ performer
7242
+ sponsor
7243
+ eventStatus
7244
+ }
7245
+ clusters {
7246
+ clusters {
7247
+ entities {
7248
+ id
7249
+ name
7250
+ }
7251
+ similarity
7252
+ }
7253
+ }
7254
+ }
7255
+ }
7256
+ `;
7070
7257
  export const UpdateEvent = gql `
7071
7258
  mutation UpdateEvent($event: EventUpdateInput!) {
7072
7259
  updateEvent(event: $event) {
@@ -8275,6 +8462,87 @@ export const QueryInvestments = gql `
8275
8462
  }
8276
8463
  }
8277
8464
  `;
8465
+ export const QueryInvestmentsClusters = gql `
8466
+ query QueryInvestmentsClusters($filter: InvestmentFilter, $clusters: EntityClustersInput, $correlationId: String) {
8467
+ investments(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
8468
+ results {
8469
+ id
8470
+ name
8471
+ creationDate
8472
+ modifiedDate
8473
+ relevance
8474
+ owner {
8475
+ id
8476
+ }
8477
+ state
8478
+ alternateNames
8479
+ uri
8480
+ description
8481
+ identifier
8482
+ thing
8483
+ feeds {
8484
+ id
8485
+ name
8486
+ }
8487
+ links {
8488
+ uri
8489
+ linkType
8490
+ excerpts
8491
+ }
8492
+ workflow {
8493
+ id
8494
+ name
8495
+ }
8496
+ location {
8497
+ latitude
8498
+ longitude
8499
+ }
8500
+ h3 {
8501
+ h3r0
8502
+ h3r1
8503
+ h3r2
8504
+ h3r3
8505
+ h3r4
8506
+ h3r5
8507
+ h3r6
8508
+ h3r7
8509
+ h3r8
8510
+ h3r9
8511
+ h3r10
8512
+ h3r11
8513
+ h3r12
8514
+ h3r13
8515
+ h3r14
8516
+ h3r15
8517
+ }
8518
+ amount
8519
+ amountCurrency
8520
+ status
8521
+ stage
8522
+ investmentDate
8523
+ roundSize
8524
+ roundSizeCurrency
8525
+ postValuation
8526
+ postValuationCurrency
8527
+ sharesOwned
8528
+ vehicle
8529
+ entryPricePerShare
8530
+ currentPricePerShare
8531
+ discountPercent
8532
+ proRataRights
8533
+ }
8534
+ clusters {
8535
+ clusters {
8536
+ entities {
8537
+ id
8538
+ name
8539
+ }
8540
+ similarity
8541
+ }
8542
+ }
8543
+ }
8544
+ }
8545
+ `;
8278
8546
  export const QueryInvestmentsExpanded = gql `
8279
8547
  query QueryInvestmentsExpanded($filter: InvestmentFilter, $correlationId: String) {
8280
8548
  investments(filter: $filter, correlationId: $correlationId) {
@@ -8545,9 +8813,13 @@ export const QueryInvestmentFunds = gql `
8545
8813
  }
8546
8814
  }
8547
8815
  `;
8548
- export const QueryInvestmentFundsExpanded = gql `
8549
- query QueryInvestmentFundsExpanded($filter: InvestmentFundFilter, $correlationId: String) {
8550
- investmentFunds(filter: $filter, correlationId: $correlationId) {
8816
+ export const QueryInvestmentFundsClusters = gql `
8817
+ query QueryInvestmentFundsClusters($filter: InvestmentFundFilter, $clusters: EntityClustersInput, $correlationId: String) {
8818
+ investmentFunds(
8819
+ filter: $filter
8820
+ clusters: $clusters
8821
+ correlationId: $correlationId
8822
+ ) {
8551
8823
  results {
8552
8824
  id
8553
8825
  name
@@ -8604,27 +8876,99 @@ export const QueryInvestmentFundsExpanded = gql `
8604
8876
  vintage
8605
8877
  targetSize
8606
8878
  targetSizeCurrency
8607
- organizations {
8608
- id
8609
- name
8610
- }
8611
- investments {
8612
- id
8613
- name
8614
- }
8615
- parentFund {
8616
- id
8617
- name
8618
- }
8619
- childFunds {
8620
- id
8621
- name
8879
+ }
8880
+ clusters {
8881
+ clusters {
8882
+ entities {
8883
+ id
8884
+ name
8885
+ }
8886
+ similarity
8622
8887
  }
8623
8888
  }
8624
8889
  }
8625
8890
  }
8626
8891
  `;
8627
- export const UpdateInvestmentFund = gql `
8892
+ export const QueryInvestmentFundsExpanded = gql `
8893
+ query QueryInvestmentFundsExpanded($filter: InvestmentFundFilter, $correlationId: String) {
8894
+ investmentFunds(filter: $filter, correlationId: $correlationId) {
8895
+ results {
8896
+ id
8897
+ name
8898
+ creationDate
8899
+ modifiedDate
8900
+ relevance
8901
+ owner {
8902
+ id
8903
+ }
8904
+ state
8905
+ alternateNames
8906
+ uri
8907
+ description
8908
+ identifier
8909
+ thing
8910
+ feeds {
8911
+ id
8912
+ name
8913
+ }
8914
+ links {
8915
+ uri
8916
+ linkType
8917
+ excerpts
8918
+ }
8919
+ workflow {
8920
+ id
8921
+ name
8922
+ }
8923
+ location {
8924
+ latitude
8925
+ longitude
8926
+ }
8927
+ h3 {
8928
+ h3r0
8929
+ h3r1
8930
+ h3r2
8931
+ h3r3
8932
+ h3r4
8933
+ h3r5
8934
+ h3r6
8935
+ h3r7
8936
+ h3r8
8937
+ h3r9
8938
+ h3r10
8939
+ h3r11
8940
+ h3r12
8941
+ h3r13
8942
+ h3r14
8943
+ h3r15
8944
+ }
8945
+ amount
8946
+ amountCurrency
8947
+ fundType
8948
+ vintage
8949
+ targetSize
8950
+ targetSizeCurrency
8951
+ organizations {
8952
+ id
8953
+ name
8954
+ }
8955
+ investments {
8956
+ id
8957
+ name
8958
+ }
8959
+ parentFund {
8960
+ id
8961
+ name
8962
+ }
8963
+ childFunds {
8964
+ id
8965
+ name
8966
+ }
8967
+ }
8968
+ }
8969
+ }
8970
+ `;
8971
+ export const UpdateInvestmentFund = gql `
8628
8972
  mutation UpdateInvestmentFund($investmentFund: InvestmentFundUpdateInput!) {
8629
8973
  updateInvestmentFund(investmentFund: $investmentFund) {
8630
8974
  id
@@ -8876,6 +9220,76 @@ export const QueryMedicalConditions = gql `
8876
9220
  }
8877
9221
  }
8878
9222
  `;
9223
+ export const QueryMedicalConditionsClusters = gql `
9224
+ query QueryMedicalConditionsClusters($filter: MedicalConditionFilter, $clusters: EntityClustersInput, $correlationId: String) {
9225
+ medicalConditions(
9226
+ filter: $filter
9227
+ clusters: $clusters
9228
+ correlationId: $correlationId
9229
+ ) {
9230
+ results {
9231
+ id
9232
+ name
9233
+ creationDate
9234
+ modifiedDate
9235
+ relevance
9236
+ owner {
9237
+ id
9238
+ }
9239
+ state
9240
+ alternateNames
9241
+ uri
9242
+ description
9243
+ identifier
9244
+ thing
9245
+ feeds {
9246
+ id
9247
+ name
9248
+ }
9249
+ links {
9250
+ uri
9251
+ linkType
9252
+ excerpts
9253
+ }
9254
+ workflow {
9255
+ id
9256
+ name
9257
+ }
9258
+ location {
9259
+ latitude
9260
+ longitude
9261
+ }
9262
+ h3 {
9263
+ h3r0
9264
+ h3r1
9265
+ h3r2
9266
+ h3r3
9267
+ h3r4
9268
+ h3r5
9269
+ h3r6
9270
+ h3r7
9271
+ h3r8
9272
+ h3r9
9273
+ h3r10
9274
+ h3r11
9275
+ h3r12
9276
+ h3r13
9277
+ h3r14
9278
+ h3r15
9279
+ }
9280
+ }
9281
+ clusters {
9282
+ clusters {
9283
+ entities {
9284
+ id
9285
+ name
9286
+ }
9287
+ similarity
9288
+ }
9289
+ }
9290
+ }
9291
+ }
9292
+ `;
8879
9293
  export const UpdateMedicalCondition = gql `
8880
9294
  mutation UpdateMedicalCondition($medicalCondition: MedicalConditionUpdateInput!) {
8881
9295
  updateMedicalCondition(medicalCondition: $medicalCondition) {
@@ -9038,6 +9452,76 @@ export const QueryMedicalContraindications = gql `
9038
9452
  }
9039
9453
  }
9040
9454
  `;
9455
+ export const QueryMedicalContraindicationsClusters = gql `
9456
+ query QueryMedicalContraindicationsClusters($filter: MedicalContraindicationFilter, $clusters: EntityClustersInput, $correlationId: String) {
9457
+ medicalContraindications(
9458
+ filter: $filter
9459
+ clusters: $clusters
9460
+ correlationId: $correlationId
9461
+ ) {
9462
+ results {
9463
+ id
9464
+ name
9465
+ creationDate
9466
+ modifiedDate
9467
+ relevance
9468
+ owner {
9469
+ id
9470
+ }
9471
+ state
9472
+ alternateNames
9473
+ uri
9474
+ description
9475
+ identifier
9476
+ thing
9477
+ feeds {
9478
+ id
9479
+ name
9480
+ }
9481
+ links {
9482
+ uri
9483
+ linkType
9484
+ excerpts
9485
+ }
9486
+ workflow {
9487
+ id
9488
+ name
9489
+ }
9490
+ location {
9491
+ latitude
9492
+ longitude
9493
+ }
9494
+ h3 {
9495
+ h3r0
9496
+ h3r1
9497
+ h3r2
9498
+ h3r3
9499
+ h3r4
9500
+ h3r5
9501
+ h3r6
9502
+ h3r7
9503
+ h3r8
9504
+ h3r9
9505
+ h3r10
9506
+ h3r11
9507
+ h3r12
9508
+ h3r13
9509
+ h3r14
9510
+ h3r15
9511
+ }
9512
+ }
9513
+ clusters {
9514
+ clusters {
9515
+ entities {
9516
+ id
9517
+ name
9518
+ }
9519
+ similarity
9520
+ }
9521
+ }
9522
+ }
9523
+ }
9524
+ `;
9041
9525
  export const UpdateMedicalContraindication = gql `
9042
9526
  mutation UpdateMedicalContraindication($medicalContraindication: MedicalContraindicationUpdateInput!) {
9043
9527
  updateMedicalContraindication(medicalContraindication: $medicalContraindication) {
@@ -9200,6 +9684,76 @@ export const QueryMedicalDevices = gql `
9200
9684
  }
9201
9685
  }
9202
9686
  `;
9687
+ export const QueryMedicalDevicesClusters = gql `
9688
+ query QueryMedicalDevicesClusters($filter: MedicalDeviceFilter, $clusters: EntityClustersInput, $correlationId: String) {
9689
+ medicalDevices(
9690
+ filter: $filter
9691
+ clusters: $clusters
9692
+ correlationId: $correlationId
9693
+ ) {
9694
+ results {
9695
+ id
9696
+ name
9697
+ creationDate
9698
+ modifiedDate
9699
+ relevance
9700
+ owner {
9701
+ id
9702
+ }
9703
+ state
9704
+ alternateNames
9705
+ uri
9706
+ description
9707
+ identifier
9708
+ thing
9709
+ feeds {
9710
+ id
9711
+ name
9712
+ }
9713
+ links {
9714
+ uri
9715
+ linkType
9716
+ excerpts
9717
+ }
9718
+ workflow {
9719
+ id
9720
+ name
9721
+ }
9722
+ location {
9723
+ latitude
9724
+ longitude
9725
+ }
9726
+ h3 {
9727
+ h3r0
9728
+ h3r1
9729
+ h3r2
9730
+ h3r3
9731
+ h3r4
9732
+ h3r5
9733
+ h3r6
9734
+ h3r7
9735
+ h3r8
9736
+ h3r9
9737
+ h3r10
9738
+ h3r11
9739
+ h3r12
9740
+ h3r13
9741
+ h3r14
9742
+ h3r15
9743
+ }
9744
+ }
9745
+ clusters {
9746
+ clusters {
9747
+ entities {
9748
+ id
9749
+ name
9750
+ }
9751
+ similarity
9752
+ }
9753
+ }
9754
+ }
9755
+ }
9756
+ `;
9203
9757
  export const UpdateMedicalDevice = gql `
9204
9758
  mutation UpdateMedicalDevice($medicalDevice: MedicalDeviceUpdateInput!) {
9205
9759
  updateMedicalDevice(medicalDevice: $medicalDevice) {
@@ -9362,6 +9916,76 @@ export const QueryMedicalDrugs = gql `
9362
9916
  }
9363
9917
  }
9364
9918
  `;
9919
+ export const QueryMedicalDrugsClusters = gql `
9920
+ query QueryMedicalDrugsClusters($filter: MedicalDrugFilter, $clusters: EntityClustersInput, $correlationId: String) {
9921
+ medicalDrugs(
9922
+ filter: $filter
9923
+ clusters: $clusters
9924
+ correlationId: $correlationId
9925
+ ) {
9926
+ results {
9927
+ id
9928
+ name
9929
+ creationDate
9930
+ modifiedDate
9931
+ relevance
9932
+ owner {
9933
+ id
9934
+ }
9935
+ state
9936
+ alternateNames
9937
+ uri
9938
+ description
9939
+ identifier
9940
+ thing
9941
+ feeds {
9942
+ id
9943
+ name
9944
+ }
9945
+ links {
9946
+ uri
9947
+ linkType
9948
+ excerpts
9949
+ }
9950
+ workflow {
9951
+ id
9952
+ name
9953
+ }
9954
+ location {
9955
+ latitude
9956
+ longitude
9957
+ }
9958
+ h3 {
9959
+ h3r0
9960
+ h3r1
9961
+ h3r2
9962
+ h3r3
9963
+ h3r4
9964
+ h3r5
9965
+ h3r6
9966
+ h3r7
9967
+ h3r8
9968
+ h3r9
9969
+ h3r10
9970
+ h3r11
9971
+ h3r12
9972
+ h3r13
9973
+ h3r14
9974
+ h3r15
9975
+ }
9976
+ }
9977
+ clusters {
9978
+ clusters {
9979
+ entities {
9980
+ id
9981
+ name
9982
+ }
9983
+ similarity
9984
+ }
9985
+ }
9986
+ }
9987
+ }
9988
+ `;
9365
9989
  export const UpdateMedicalDrug = gql `
9366
9990
  mutation UpdateMedicalDrug($medicalDrug: MedicalDrugUpdateInput!) {
9367
9991
  updateMedicalDrug(medicalDrug: $medicalDrug) {
@@ -9524,6 +10148,76 @@ export const QueryMedicalDrugClasses = gql `
9524
10148
  }
9525
10149
  }
9526
10150
  `;
10151
+ export const QueryMedicalDrugClassesClusters = gql `
10152
+ query QueryMedicalDrugClassesClusters($filter: MedicalDrugClassFilter, $clusters: EntityClustersInput, $correlationId: String) {
10153
+ medicalDrugClasses(
10154
+ filter: $filter
10155
+ clusters: $clusters
10156
+ correlationId: $correlationId
10157
+ ) {
10158
+ results {
10159
+ id
10160
+ name
10161
+ creationDate
10162
+ modifiedDate
10163
+ relevance
10164
+ owner {
10165
+ id
10166
+ }
10167
+ state
10168
+ alternateNames
10169
+ uri
10170
+ description
10171
+ identifier
10172
+ thing
10173
+ feeds {
10174
+ id
10175
+ name
10176
+ }
10177
+ links {
10178
+ uri
10179
+ linkType
10180
+ excerpts
10181
+ }
10182
+ workflow {
10183
+ id
10184
+ name
10185
+ }
10186
+ location {
10187
+ latitude
10188
+ longitude
10189
+ }
10190
+ h3 {
10191
+ h3r0
10192
+ h3r1
10193
+ h3r2
10194
+ h3r3
10195
+ h3r4
10196
+ h3r5
10197
+ h3r6
10198
+ h3r7
10199
+ h3r8
10200
+ h3r9
10201
+ h3r10
10202
+ h3r11
10203
+ h3r12
10204
+ h3r13
10205
+ h3r14
10206
+ h3r15
10207
+ }
10208
+ }
10209
+ clusters {
10210
+ clusters {
10211
+ entities {
10212
+ id
10213
+ name
10214
+ }
10215
+ similarity
10216
+ }
10217
+ }
10218
+ }
10219
+ }
10220
+ `;
9527
10221
  export const UpdateMedicalDrugClass = gql `
9528
10222
  mutation UpdateMedicalDrugClass($medicalDrugClass: MedicalDrugClassUpdateInput!) {
9529
10223
  updateMedicalDrugClass(medicalDrugClass: $medicalDrugClass) {
@@ -9629,9 +10323,70 @@ export const GetMedicalGuideline = gql `
9629
10323
  }
9630
10324
  }
9631
10325
  `;
9632
- export const QueryMedicalGuidelines = gql `
9633
- query QueryMedicalGuidelines($filter: MedicalGuidelineFilter, $correlationId: String) {
9634
- medicalGuidelines(filter: $filter, correlationId: $correlationId) {
10326
+ export const QueryMedicalGuidelines = gql `
10327
+ query QueryMedicalGuidelines($filter: MedicalGuidelineFilter, $correlationId: String) {
10328
+ medicalGuidelines(filter: $filter, correlationId: $correlationId) {
10329
+ results {
10330
+ id
10331
+ name
10332
+ creationDate
10333
+ modifiedDate
10334
+ relevance
10335
+ owner {
10336
+ id
10337
+ }
10338
+ state
10339
+ alternateNames
10340
+ uri
10341
+ description
10342
+ identifier
10343
+ thing
10344
+ feeds {
10345
+ id
10346
+ name
10347
+ }
10348
+ links {
10349
+ uri
10350
+ linkType
10351
+ excerpts
10352
+ }
10353
+ workflow {
10354
+ id
10355
+ name
10356
+ }
10357
+ location {
10358
+ latitude
10359
+ longitude
10360
+ }
10361
+ h3 {
10362
+ h3r0
10363
+ h3r1
10364
+ h3r2
10365
+ h3r3
10366
+ h3r4
10367
+ h3r5
10368
+ h3r6
10369
+ h3r7
10370
+ h3r8
10371
+ h3r9
10372
+ h3r10
10373
+ h3r11
10374
+ h3r12
10375
+ h3r13
10376
+ h3r14
10377
+ h3r15
10378
+ }
10379
+ }
10380
+ }
10381
+ }
10382
+ `;
10383
+ export const QueryMedicalGuidelinesClusters = gql `
10384
+ query QueryMedicalGuidelinesClusters($filter: MedicalGuidelineFilter, $clusters: EntityClustersInput, $correlationId: String) {
10385
+ medicalGuidelines(
10386
+ filter: $filter
10387
+ clusters: $clusters
10388
+ correlationId: $correlationId
10389
+ ) {
9635
10390
  results {
9636
10391
  id
9637
10392
  name
@@ -9683,6 +10438,15 @@ export const QueryMedicalGuidelines = gql `
9683
10438
  h3r15
9684
10439
  }
9685
10440
  }
10441
+ clusters {
10442
+ clusters {
10443
+ entities {
10444
+ id
10445
+ name
10446
+ }
10447
+ similarity
10448
+ }
10449
+ }
9686
10450
  }
9687
10451
  }
9688
10452
  `;
@@ -9848,6 +10612,76 @@ export const QueryMedicalIndications = gql `
9848
10612
  }
9849
10613
  }
9850
10614
  `;
10615
+ export const QueryMedicalIndicationsClusters = gql `
10616
+ query QueryMedicalIndicationsClusters($filter: MedicalIndicationFilter, $clusters: EntityClustersInput, $correlationId: String) {
10617
+ medicalIndications(
10618
+ filter: $filter
10619
+ clusters: $clusters
10620
+ correlationId: $correlationId
10621
+ ) {
10622
+ results {
10623
+ id
10624
+ name
10625
+ creationDate
10626
+ modifiedDate
10627
+ relevance
10628
+ owner {
10629
+ id
10630
+ }
10631
+ state
10632
+ alternateNames
10633
+ uri
10634
+ description
10635
+ identifier
10636
+ thing
10637
+ feeds {
10638
+ id
10639
+ name
10640
+ }
10641
+ links {
10642
+ uri
10643
+ linkType
10644
+ excerpts
10645
+ }
10646
+ workflow {
10647
+ id
10648
+ name
10649
+ }
10650
+ location {
10651
+ latitude
10652
+ longitude
10653
+ }
10654
+ h3 {
10655
+ h3r0
10656
+ h3r1
10657
+ h3r2
10658
+ h3r3
10659
+ h3r4
10660
+ h3r5
10661
+ h3r6
10662
+ h3r7
10663
+ h3r8
10664
+ h3r9
10665
+ h3r10
10666
+ h3r11
10667
+ h3r12
10668
+ h3r13
10669
+ h3r14
10670
+ h3r15
10671
+ }
10672
+ }
10673
+ clusters {
10674
+ clusters {
10675
+ entities {
10676
+ id
10677
+ name
10678
+ }
10679
+ similarity
10680
+ }
10681
+ }
10682
+ }
10683
+ }
10684
+ `;
9851
10685
  export const UpdateMedicalIndication = gql `
9852
10686
  mutation UpdateMedicalIndication($medicalIndication: MedicalIndicationUpdateInput!) {
9853
10687
  updateMedicalIndication(medicalIndication: $medicalIndication) {
@@ -10010,6 +10844,76 @@ export const QueryMedicalProcedures = gql `
10010
10844
  }
10011
10845
  }
10012
10846
  `;
10847
+ export const QueryMedicalProceduresClusters = gql `
10848
+ query QueryMedicalProceduresClusters($filter: MedicalProcedureFilter, $clusters: EntityClustersInput, $correlationId: String) {
10849
+ medicalProcedures(
10850
+ filter: $filter
10851
+ clusters: $clusters
10852
+ correlationId: $correlationId
10853
+ ) {
10854
+ results {
10855
+ id
10856
+ name
10857
+ creationDate
10858
+ modifiedDate
10859
+ relevance
10860
+ owner {
10861
+ id
10862
+ }
10863
+ state
10864
+ alternateNames
10865
+ uri
10866
+ description
10867
+ identifier
10868
+ thing
10869
+ feeds {
10870
+ id
10871
+ name
10872
+ }
10873
+ links {
10874
+ uri
10875
+ linkType
10876
+ excerpts
10877
+ }
10878
+ workflow {
10879
+ id
10880
+ name
10881
+ }
10882
+ location {
10883
+ latitude
10884
+ longitude
10885
+ }
10886
+ h3 {
10887
+ h3r0
10888
+ h3r1
10889
+ h3r2
10890
+ h3r3
10891
+ h3r4
10892
+ h3r5
10893
+ h3r6
10894
+ h3r7
10895
+ h3r8
10896
+ h3r9
10897
+ h3r10
10898
+ h3r11
10899
+ h3r12
10900
+ h3r13
10901
+ h3r14
10902
+ h3r15
10903
+ }
10904
+ }
10905
+ clusters {
10906
+ clusters {
10907
+ entities {
10908
+ id
10909
+ name
10910
+ }
10911
+ similarity
10912
+ }
10913
+ }
10914
+ }
10915
+ }
10916
+ `;
10013
10917
  export const UpdateMedicalProcedure = gql `
10014
10918
  mutation UpdateMedicalProcedure($medicalProcedure: MedicalProcedureUpdateInput!) {
10015
10919
  updateMedicalProcedure(medicalProcedure: $medicalProcedure) {
@@ -10186,6 +11090,83 @@ export const QueryMedicalStudies = gql `
10186
11090
  }
10187
11091
  }
10188
11092
  `;
11093
+ export const QueryMedicalStudiesClusters = gql `
11094
+ query QueryMedicalStudiesClusters($filter: MedicalStudyFilter, $clusters: EntityClustersInput, $correlationId: String) {
11095
+ medicalStudies(
11096
+ filter: $filter
11097
+ clusters: $clusters
11098
+ correlationId: $correlationId
11099
+ ) {
11100
+ results {
11101
+ id
11102
+ name
11103
+ creationDate
11104
+ modifiedDate
11105
+ relevance
11106
+ owner {
11107
+ id
11108
+ }
11109
+ state
11110
+ alternateNames
11111
+ uri
11112
+ description
11113
+ identifier
11114
+ thing
11115
+ feeds {
11116
+ id
11117
+ name
11118
+ }
11119
+ links {
11120
+ uri
11121
+ linkType
11122
+ excerpts
11123
+ }
11124
+ workflow {
11125
+ id
11126
+ name
11127
+ }
11128
+ location {
11129
+ latitude
11130
+ longitude
11131
+ }
11132
+ h3 {
11133
+ h3r0
11134
+ h3r1
11135
+ h3r2
11136
+ h3r3
11137
+ h3r4
11138
+ h3r5
11139
+ h3r6
11140
+ h3r7
11141
+ h3r8
11142
+ h3r9
11143
+ h3r10
11144
+ h3r11
11145
+ h3r12
11146
+ h3r13
11147
+ h3r14
11148
+ h3r15
11149
+ }
11150
+ address {
11151
+ streetAddress
11152
+ city
11153
+ region
11154
+ country
11155
+ postalCode
11156
+ }
11157
+ }
11158
+ clusters {
11159
+ clusters {
11160
+ entities {
11161
+ id
11162
+ name
11163
+ }
11164
+ similarity
11165
+ }
11166
+ }
11167
+ }
11168
+ }
11169
+ `;
10189
11170
  export const UpdateMedicalStudy = gql `
10190
11171
  mutation UpdateMedicalStudy($medicalStudy: MedicalStudyUpdateInput!) {
10191
11172
  updateMedicalStudy(medicalStudy: $medicalStudy) {
@@ -10291,9 +11272,70 @@ export const GetMedicalTest = gql `
10291
11272
  }
10292
11273
  }
10293
11274
  `;
10294
- export const QueryMedicalTests = gql `
10295
- query QueryMedicalTests($filter: MedicalTestFilter, $correlationId: String) {
10296
- medicalTests(filter: $filter, correlationId: $correlationId) {
11275
+ export const QueryMedicalTests = gql `
11276
+ query QueryMedicalTests($filter: MedicalTestFilter, $correlationId: String) {
11277
+ medicalTests(filter: $filter, correlationId: $correlationId) {
11278
+ results {
11279
+ id
11280
+ name
11281
+ creationDate
11282
+ modifiedDate
11283
+ relevance
11284
+ owner {
11285
+ id
11286
+ }
11287
+ state
11288
+ alternateNames
11289
+ uri
11290
+ description
11291
+ identifier
11292
+ thing
11293
+ feeds {
11294
+ id
11295
+ name
11296
+ }
11297
+ links {
11298
+ uri
11299
+ linkType
11300
+ excerpts
11301
+ }
11302
+ workflow {
11303
+ id
11304
+ name
11305
+ }
11306
+ location {
11307
+ latitude
11308
+ longitude
11309
+ }
11310
+ h3 {
11311
+ h3r0
11312
+ h3r1
11313
+ h3r2
11314
+ h3r3
11315
+ h3r4
11316
+ h3r5
11317
+ h3r6
11318
+ h3r7
11319
+ h3r8
11320
+ h3r9
11321
+ h3r10
11322
+ h3r11
11323
+ h3r12
11324
+ h3r13
11325
+ h3r14
11326
+ h3r15
11327
+ }
11328
+ }
11329
+ }
11330
+ }
11331
+ `;
11332
+ export const QueryMedicalTestsClusters = gql `
11333
+ query QueryMedicalTestsClusters($filter: MedicalTestFilter, $clusters: EntityClustersInput, $correlationId: String) {
11334
+ medicalTests(
11335
+ filter: $filter
11336
+ clusters: $clusters
11337
+ correlationId: $correlationId
11338
+ ) {
10297
11339
  results {
10298
11340
  id
10299
11341
  name
@@ -10345,6 +11387,15 @@ export const QueryMedicalTests = gql `
10345
11387
  h3r15
10346
11388
  }
10347
11389
  }
11390
+ clusters {
11391
+ clusters {
11392
+ entities {
11393
+ id
11394
+ name
11395
+ }
11396
+ similarity
11397
+ }
11398
+ }
10348
11399
  }
10349
11400
  }
10350
11401
  `;
@@ -10510,6 +11561,76 @@ export const QueryMedicalTherapies = gql `
10510
11561
  }
10511
11562
  }
10512
11563
  `;
11564
+ export const QueryMedicalTherapiesClusters = gql `
11565
+ query QueryMedicalTherapiesClusters($filter: MedicalTherapyFilter, $clusters: EntityClustersInput, $correlationId: String) {
11566
+ medicalTherapies(
11567
+ filter: $filter
11568
+ clusters: $clusters
11569
+ correlationId: $correlationId
11570
+ ) {
11571
+ results {
11572
+ id
11573
+ name
11574
+ creationDate
11575
+ modifiedDate
11576
+ relevance
11577
+ owner {
11578
+ id
11579
+ }
11580
+ state
11581
+ alternateNames
11582
+ uri
11583
+ description
11584
+ identifier
11585
+ thing
11586
+ feeds {
11587
+ id
11588
+ name
11589
+ }
11590
+ links {
11591
+ uri
11592
+ linkType
11593
+ excerpts
11594
+ }
11595
+ workflow {
11596
+ id
11597
+ name
11598
+ }
11599
+ location {
11600
+ latitude
11601
+ longitude
11602
+ }
11603
+ h3 {
11604
+ h3r0
11605
+ h3r1
11606
+ h3r2
11607
+ h3r3
11608
+ h3r4
11609
+ h3r5
11610
+ h3r6
11611
+ h3r7
11612
+ h3r8
11613
+ h3r9
11614
+ h3r10
11615
+ h3r11
11616
+ h3r12
11617
+ h3r13
11618
+ h3r14
11619
+ h3r15
11620
+ }
11621
+ }
11622
+ clusters {
11623
+ clusters {
11624
+ entities {
11625
+ id
11626
+ name
11627
+ }
11628
+ similarity
11629
+ }
11630
+ }
11631
+ }
11632
+ }
11633
+ `;
10513
11634
  export const UpdateMedicalTherapy = gql `
10514
11635
  mutation UpdateMedicalTherapy($medicalTherapy: MedicalTherapyUpdateInput!) {
10515
11636
  updateMedicalTherapy(medicalTherapy: $medicalTherapy) {
@@ -10541,6 +11662,82 @@ export const DeleteObservation = gql `
10541
11662
  }
10542
11663
  }
10543
11664
  `;
11665
+ export const MatchEntity = gql `
11666
+ mutation MatchEntity($observable: ObservableInput!, $candidates: [EntityReferenceInput!]!, $specification: EntityReferenceInput, $correlationId: String) {
11667
+ matchEntity(
11668
+ observable: $observable
11669
+ candidates: $candidates
11670
+ specification: $specification
11671
+ correlationId: $correlationId
11672
+ ) {
11673
+ reference {
11674
+ type
11675
+ observable {
11676
+ id
11677
+ name
11678
+ }
11679
+ }
11680
+ relevance
11681
+ reasoning
11682
+ }
11683
+ }
11684
+ `;
11685
+ export const ResolveEntities = gql `
11686
+ mutation ResolveEntities($type: ObservableTypes!, $entities: [EntityReferenceInput!]!, $threshold: Float, $specification: EntityReferenceInput, $correlationId: String) {
11687
+ resolveEntities(
11688
+ type: $type
11689
+ entities: $entities
11690
+ threshold: $threshold
11691
+ specification: $specification
11692
+ correlationId: $correlationId
11693
+ ) {
11694
+ type
11695
+ primary {
11696
+ id
11697
+ }
11698
+ resolved {
11699
+ id
11700
+ }
11701
+ relevance
11702
+ reasoning
11703
+ primaryCluster {
11704
+ entities {
11705
+ id
11706
+ name
11707
+ }
11708
+ similarity
11709
+ }
11710
+ outlierClusters {
11711
+ entities {
11712
+ id
11713
+ name
11714
+ }
11715
+ similarity
11716
+ }
11717
+ }
11718
+ }
11719
+ `;
11720
+ export const ResolveEntity = gql `
11721
+ mutation ResolveEntity($type: ObservableTypes!, $source: EntityReferenceInput!, $target: EntityReferenceInput!, $specification: EntityReferenceInput, $correlationId: String) {
11722
+ resolveEntity(
11723
+ type: $type
11724
+ source: $source
11725
+ target: $target
11726
+ specification: $specification
11727
+ correlationId: $correlationId
11728
+ ) {
11729
+ reference {
11730
+ type
11731
+ observable {
11732
+ id
11733
+ name
11734
+ }
11735
+ }
11736
+ relevance
11737
+ reasoning
11738
+ }
11739
+ }
11740
+ `;
10544
11741
  export const UpdateObservation = gql `
10545
11742
  mutation UpdateObservation($observation: ObservationUpdateInput!) {
10546
11743
  updateObservation(observation: $observation) {
@@ -10783,6 +11980,92 @@ export const QueryOrganizations = gql `
10783
11980
  }
10784
11981
  }
10785
11982
  `;
11983
+ export const QueryOrganizationsClusters = gql `
11984
+ query QueryOrganizationsClusters($filter: OrganizationFilter, $clusters: EntityClustersInput, $correlationId: String) {
11985
+ organizations(
11986
+ filter: $filter
11987
+ clusters: $clusters
11988
+ correlationId: $correlationId
11989
+ ) {
11990
+ results {
11991
+ id
11992
+ name
11993
+ creationDate
11994
+ modifiedDate
11995
+ relevance
11996
+ owner {
11997
+ id
11998
+ }
11999
+ state
12000
+ alternateNames
12001
+ uri
12002
+ description
12003
+ identifier
12004
+ thing
12005
+ feeds {
12006
+ id
12007
+ name
12008
+ }
12009
+ links {
12010
+ uri
12011
+ linkType
12012
+ excerpts
12013
+ }
12014
+ workflow {
12015
+ id
12016
+ name
12017
+ }
12018
+ location {
12019
+ latitude
12020
+ longitude
12021
+ }
12022
+ h3 {
12023
+ h3r0
12024
+ h3r1
12025
+ h3r2
12026
+ h3r3
12027
+ h3r4
12028
+ h3r5
12029
+ h3r6
12030
+ h3r7
12031
+ h3r8
12032
+ h3r9
12033
+ h3r10
12034
+ h3r11
12035
+ h3r12
12036
+ h3r13
12037
+ h3r14
12038
+ h3r15
12039
+ }
12040
+ address {
12041
+ streetAddress
12042
+ city
12043
+ region
12044
+ country
12045
+ postalCode
12046
+ }
12047
+ foundingDate
12048
+ email
12049
+ telephone
12050
+ legalName
12051
+ industries
12052
+ revenue
12053
+ revenueCurrency
12054
+ investment
12055
+ investmentCurrency
12056
+ }
12057
+ clusters {
12058
+ clusters {
12059
+ entities {
12060
+ id
12061
+ name
12062
+ }
12063
+ similarity
12064
+ }
12065
+ }
12066
+ }
12067
+ }
12068
+ `;
10786
12069
  export const QueryOrganizationsExpanded = gql `
10787
12070
  query QueryOrganizationsExpanded($filter: OrganizationFilter, $correlationId: String) {
10788
12071
  organizations(filter: $filter, correlationId: $correlationId) {
@@ -11056,9 +12339,81 @@ export const GetPerson = gql `
11056
12339
  }
11057
12340
  }
11058
12341
  `;
11059
- export const QueryPersons = gql `
11060
- query QueryPersons($filter: PersonFilter, $correlationId: String) {
11061
- persons(filter: $filter, correlationId: $correlationId) {
12342
+ export const QueryPersons = gql `
12343
+ query QueryPersons($filter: PersonFilter, $correlationId: String) {
12344
+ persons(filter: $filter, correlationId: $correlationId) {
12345
+ results {
12346
+ id
12347
+ name
12348
+ creationDate
12349
+ modifiedDate
12350
+ relevance
12351
+ owner {
12352
+ id
12353
+ }
12354
+ state
12355
+ alternateNames
12356
+ uri
12357
+ description
12358
+ identifier
12359
+ thing
12360
+ feeds {
12361
+ id
12362
+ name
12363
+ }
12364
+ links {
12365
+ uri
12366
+ linkType
12367
+ excerpts
12368
+ }
12369
+ workflow {
12370
+ id
12371
+ name
12372
+ }
12373
+ location {
12374
+ latitude
12375
+ longitude
12376
+ }
12377
+ h3 {
12378
+ h3r0
12379
+ h3r1
12380
+ h3r2
12381
+ h3r3
12382
+ h3r4
12383
+ h3r5
12384
+ h3r6
12385
+ h3r7
12386
+ h3r8
12387
+ h3r9
12388
+ h3r10
12389
+ h3r11
12390
+ h3r12
12391
+ h3r13
12392
+ h3r14
12393
+ h3r15
12394
+ }
12395
+ address {
12396
+ streetAddress
12397
+ city
12398
+ region
12399
+ country
12400
+ postalCode
12401
+ }
12402
+ email
12403
+ givenName
12404
+ familyName
12405
+ phoneNumber
12406
+ birthDate
12407
+ title
12408
+ occupation
12409
+ education
12410
+ }
12411
+ }
12412
+ }
12413
+ `;
12414
+ export const QueryPersonsClusters = gql `
12415
+ query QueryPersonsClusters($filter: PersonFilter, $clusters: EntityClustersInput, $correlationId: String) {
12416
+ persons(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
11062
12417
  results {
11063
12418
  id
11064
12419
  name
@@ -11125,6 +12480,15 @@ export const QueryPersons = gql `
11125
12480
  occupation
11126
12481
  education
11127
12482
  }
12483
+ clusters {
12484
+ clusters {
12485
+ entities {
12486
+ id
12487
+ name
12488
+ }
12489
+ similarity
12490
+ }
12491
+ }
11128
12492
  }
11129
12493
  }
11130
12494
  `;
@@ -11426,6 +12790,82 @@ export const QueryPlaces = gql `
11426
12790
  }
11427
12791
  }
11428
12792
  `;
12793
+ export const QueryPlacesClusters = gql `
12794
+ query QueryPlacesClusters($filter: PlaceFilter, $clusters: EntityClustersInput, $correlationId: String) {
12795
+ places(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
12796
+ results {
12797
+ id
12798
+ name
12799
+ creationDate
12800
+ modifiedDate
12801
+ relevance
12802
+ owner {
12803
+ id
12804
+ }
12805
+ state
12806
+ alternateNames
12807
+ uri
12808
+ description
12809
+ identifier
12810
+ thing
12811
+ feeds {
12812
+ id
12813
+ name
12814
+ }
12815
+ links {
12816
+ uri
12817
+ linkType
12818
+ excerpts
12819
+ }
12820
+ workflow {
12821
+ id
12822
+ name
12823
+ }
12824
+ location {
12825
+ latitude
12826
+ longitude
12827
+ }
12828
+ h3 {
12829
+ h3r0
12830
+ h3r1
12831
+ h3r2
12832
+ h3r3
12833
+ h3r4
12834
+ h3r5
12835
+ h3r6
12836
+ h3r7
12837
+ h3r8
12838
+ h3r9
12839
+ h3r10
12840
+ h3r11
12841
+ h3r12
12842
+ h3r13
12843
+ h3r14
12844
+ h3r15
12845
+ }
12846
+ address {
12847
+ streetAddress
12848
+ city
12849
+ region
12850
+ country
12851
+ postalCode
12852
+ }
12853
+ telephone
12854
+ openingHours
12855
+ priceRange
12856
+ }
12857
+ clusters {
12858
+ clusters {
12859
+ entities {
12860
+ id
12861
+ name
12862
+ }
12863
+ similarity
12864
+ }
12865
+ }
12866
+ }
12867
+ }
12868
+ `;
11429
12869
  export const UpdatePlace = gql `
11430
12870
  mutation UpdatePlace($place: PlaceUpdateInput!) {
11431
12871
  updatePlace(place: $place) {
@@ -11632,6 +13072,88 @@ export const QueryProducts = gql `
11632
13072
  }
11633
13073
  }
11634
13074
  `;
13075
+ export const QueryProductsClusters = gql `
13076
+ query QueryProductsClusters($filter: ProductFilter, $clusters: EntityClustersInput, $correlationId: String) {
13077
+ products(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
13078
+ results {
13079
+ id
13080
+ name
13081
+ creationDate
13082
+ modifiedDate
13083
+ relevance
13084
+ owner {
13085
+ id
13086
+ }
13087
+ state
13088
+ alternateNames
13089
+ uri
13090
+ description
13091
+ identifier
13092
+ thing
13093
+ feeds {
13094
+ id
13095
+ name
13096
+ }
13097
+ links {
13098
+ uri
13099
+ linkType
13100
+ excerpts
13101
+ }
13102
+ workflow {
13103
+ id
13104
+ name
13105
+ }
13106
+ location {
13107
+ latitude
13108
+ longitude
13109
+ }
13110
+ h3 {
13111
+ h3r0
13112
+ h3r1
13113
+ h3r2
13114
+ h3r3
13115
+ h3r4
13116
+ h3r5
13117
+ h3r6
13118
+ h3r7
13119
+ h3r8
13120
+ h3r9
13121
+ h3r10
13122
+ h3r11
13123
+ h3r12
13124
+ h3r13
13125
+ h3r14
13126
+ h3r15
13127
+ }
13128
+ address {
13129
+ streetAddress
13130
+ city
13131
+ region
13132
+ country
13133
+ postalCode
13134
+ }
13135
+ manufacturer
13136
+ model
13137
+ brand
13138
+ upc
13139
+ sku
13140
+ gtin
13141
+ mpn
13142
+ releaseDate
13143
+ productionDate
13144
+ }
13145
+ clusters {
13146
+ clusters {
13147
+ entities {
13148
+ id
13149
+ name
13150
+ }
13151
+ similarity
13152
+ }
13153
+ }
13154
+ }
13155
+ }
13156
+ `;
11635
13157
  export const UpdateProduct = gql `
11636
13158
  mutation UpdateProduct($product: ProductUpdateInput!) {
11637
13159
  updateProduct(product: $product) {
@@ -11887,34 +13409,130 @@ export const DeleteRepos = gql `
11887
13409
  }
11888
13410
  }
11889
13411
  `;
11890
- export const GetRepo = gql `
11891
- query GetRepo($id: ID!, $correlationId: String) {
11892
- repo(id: $id, correlationId: $correlationId) {
11893
- alternateNames
11894
- uri
11895
- description
11896
- identifier
11897
- thing
11898
- feeds {
13412
+ export const GetRepo = gql `
13413
+ query GetRepo($id: ID!, $correlationId: String) {
13414
+ repo(id: $id, correlationId: $correlationId) {
13415
+ id
13416
+ name
13417
+ creationDate
13418
+ modifiedDate
13419
+ owner {
13420
+ id
13421
+ }
13422
+ state
13423
+ alternateNames
13424
+ uri
13425
+ description
13426
+ identifier
13427
+ thing
13428
+ feeds {
13429
+ id
13430
+ name
13431
+ }
13432
+ links {
13433
+ uri
13434
+ linkType
13435
+ excerpts
13436
+ }
13437
+ workflow {
13438
+ id
13439
+ name
13440
+ }
13441
+ location {
13442
+ latitude
13443
+ longitude
13444
+ }
13445
+ h3 {
13446
+ h3r0
13447
+ h3r1
13448
+ h3r2
13449
+ h3r3
13450
+ h3r4
13451
+ h3r5
13452
+ h3r6
13453
+ h3r7
13454
+ h3r8
13455
+ h3r9
13456
+ h3r10
13457
+ h3r11
13458
+ h3r12
13459
+ h3r13
13460
+ h3r14
13461
+ h3r15
13462
+ }
13463
+ }
13464
+ }
13465
+ `;
13466
+ export const QueryRepos = gql `
13467
+ query QueryRepos($filter: RepoFilter, $correlationId: String) {
13468
+ repos(filter: $filter, correlationId: $correlationId) {
13469
+ results {
11899
13470
  id
11900
13471
  name
11901
- }
11902
- links {
13472
+ creationDate
13473
+ modifiedDate
13474
+ relevance
13475
+ owner {
13476
+ id
13477
+ }
13478
+ state
13479
+ alternateNames
11903
13480
  uri
11904
- linkType
11905
- excerpts
11906
- }
11907
- workflow {
11908
- id
11909
- name
13481
+ description
13482
+ identifier
13483
+ thing
13484
+ feeds {
13485
+ id
13486
+ name
13487
+ }
13488
+ links {
13489
+ uri
13490
+ linkType
13491
+ excerpts
13492
+ }
13493
+ workflow {
13494
+ id
13495
+ name
13496
+ }
13497
+ location {
13498
+ latitude
13499
+ longitude
13500
+ }
13501
+ h3 {
13502
+ h3r0
13503
+ h3r1
13504
+ h3r2
13505
+ h3r3
13506
+ h3r4
13507
+ h3r5
13508
+ h3r6
13509
+ h3r7
13510
+ h3r8
13511
+ h3r9
13512
+ h3r10
13513
+ h3r11
13514
+ h3r12
13515
+ h3r13
13516
+ h3r14
13517
+ h3r15
13518
+ }
11910
13519
  }
11911
13520
  }
11912
13521
  }
11913
13522
  `;
11914
- export const QueryRepos = gql `
11915
- query QueryRepos($filter: RepoFilter, $correlationId: String) {
11916
- repos(filter: $filter, correlationId: $correlationId) {
13523
+ export const QueryReposClusters = gql `
13524
+ query QueryReposClusters($filter: RepoFilter, $clusters: EntityClustersInput, $correlationId: String) {
13525
+ repos(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
11917
13526
  results {
13527
+ id
13528
+ name
13529
+ creationDate
13530
+ modifiedDate
13531
+ relevance
13532
+ owner {
13533
+ id
13534
+ }
13535
+ state
11918
13536
  alternateNames
11919
13537
  uri
11920
13538
  description
@@ -11933,6 +13551,37 @@ export const QueryRepos = gql `
11933
13551
  id
11934
13552
  name
11935
13553
  }
13554
+ location {
13555
+ latitude
13556
+ longitude
13557
+ }
13558
+ h3 {
13559
+ h3r0
13560
+ h3r1
13561
+ h3r2
13562
+ h3r3
13563
+ h3r4
13564
+ h3r5
13565
+ h3r6
13566
+ h3r7
13567
+ h3r8
13568
+ h3r9
13569
+ h3r10
13570
+ h3r11
13571
+ h3r12
13572
+ h3r13
13573
+ h3r14
13574
+ h3r15
13575
+ }
13576
+ }
13577
+ clusters {
13578
+ clusters {
13579
+ entities {
13580
+ id
13581
+ name
13582
+ }
13583
+ similarity
13584
+ }
11936
13585
  }
11937
13586
  }
11938
13587
  }
@@ -12020,8 +13669,14 @@ export const DeleteSoftwares = gql `
12020
13669
  export const GetSoftware = gql `
12021
13670
  query GetSoftware($id: ID!, $correlationId: String) {
12022
13671
  software(id: $id, correlationId: $correlationId) {
12023
- releaseDate
12024
- developer
13672
+ id
13673
+ name
13674
+ creationDate
13675
+ modifiedDate
13676
+ owner {
13677
+ id
13678
+ }
13679
+ state
12025
13680
  alternateNames
12026
13681
  uri
12027
13682
  description
@@ -12040,6 +13695,30 @@ export const GetSoftware = gql `
12040
13695
  id
12041
13696
  name
12042
13697
  }
13698
+ location {
13699
+ latitude
13700
+ longitude
13701
+ }
13702
+ h3 {
13703
+ h3r0
13704
+ h3r1
13705
+ h3r2
13706
+ h3r3
13707
+ h3r4
13708
+ h3r5
13709
+ h3r6
13710
+ h3r7
13711
+ h3r8
13712
+ h3r9
13713
+ h3r10
13714
+ h3r11
13715
+ h3r12
13716
+ h3r13
13717
+ h3r14
13718
+ h3r15
13719
+ }
13720
+ releaseDate
13721
+ developer
12043
13722
  }
12044
13723
  }
12045
13724
  `;
@@ -12047,8 +13726,74 @@ export const QuerySoftwares = gql `
12047
13726
  query QuerySoftwares($filter: SoftwareFilter, $correlationId: String) {
12048
13727
  softwares(filter: $filter, correlationId: $correlationId) {
12049
13728
  results {
13729
+ id
13730
+ name
13731
+ creationDate
13732
+ modifiedDate
13733
+ relevance
13734
+ owner {
13735
+ id
13736
+ }
13737
+ state
13738
+ alternateNames
13739
+ uri
13740
+ description
13741
+ identifier
13742
+ thing
13743
+ feeds {
13744
+ id
13745
+ name
13746
+ }
13747
+ links {
13748
+ uri
13749
+ linkType
13750
+ excerpts
13751
+ }
13752
+ workflow {
13753
+ id
13754
+ name
13755
+ }
13756
+ location {
13757
+ latitude
13758
+ longitude
13759
+ }
13760
+ h3 {
13761
+ h3r0
13762
+ h3r1
13763
+ h3r2
13764
+ h3r3
13765
+ h3r4
13766
+ h3r5
13767
+ h3r6
13768
+ h3r7
13769
+ h3r8
13770
+ h3r9
13771
+ h3r10
13772
+ h3r11
13773
+ h3r12
13774
+ h3r13
13775
+ h3r14
13776
+ h3r15
13777
+ }
12050
13778
  releaseDate
12051
13779
  developer
13780
+ }
13781
+ }
13782
+ }
13783
+ `;
13784
+ export const QuerySoftwaresClusters = gql `
13785
+ query QuerySoftwaresClusters($filter: SoftwareFilter, $clusters: EntityClustersInput, $correlationId: String) {
13786
+ softwares(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
13787
+ results {
13788
+ id
13789
+ name
13790
+ creationDate
13791
+ modifiedDate
13792
+ relevance
13793
+ owner {
13794
+ id
13795
+ }
13796
+ state
12052
13797
  alternateNames
12053
13798
  uri
12054
13799
  description
@@ -12067,6 +13812,39 @@ export const QuerySoftwares = gql `
12067
13812
  id
12068
13813
  name
12069
13814
  }
13815
+ location {
13816
+ latitude
13817
+ longitude
13818
+ }
13819
+ h3 {
13820
+ h3r0
13821
+ h3r1
13822
+ h3r2
13823
+ h3r3
13824
+ h3r4
13825
+ h3r5
13826
+ h3r6
13827
+ h3r7
13828
+ h3r8
13829
+ h3r9
13830
+ h3r10
13831
+ h3r11
13832
+ h3r12
13833
+ h3r13
13834
+ h3r14
13835
+ h3r15
13836
+ }
13837
+ releaseDate
13838
+ developer
13839
+ }
13840
+ clusters {
13841
+ clusters {
13842
+ entities {
13843
+ id
13844
+ name
13845
+ }
13846
+ similarity
13847
+ }
12070
13848
  }
12071
13849
  }
12072
13850
  }
@@ -14213,6 +15991,13 @@ export const CreateWorkflow = gql `
14213
15991
  }
14214
15992
  }
14215
15993
  }
15994
+ entityResolution {
15995
+ strategy
15996
+ threshold
15997
+ specification {
15998
+ id
15999
+ }
16000
+ }
14216
16001
  }
14217
16002
  storage {
14218
16003
  policy {
@@ -14477,6 +16262,13 @@ export const GetWorkflow = gql `
14477
16262
  }
14478
16263
  }
14479
16264
  }
16265
+ entityResolution {
16266
+ strategy
16267
+ threshold
16268
+ specification {
16269
+ id
16270
+ }
16271
+ }
14480
16272
  }
14481
16273
  storage {
14482
16274
  policy {
@@ -14715,6 +16507,13 @@ export const QueryWorkflows = gql `
14715
16507
  }
14716
16508
  }
14717
16509
  }
16510
+ entityResolution {
16511
+ strategy
16512
+ threshold
16513
+ specification {
16514
+ id
16515
+ }
16516
+ }
14718
16517
  }
14719
16518
  storage {
14720
16519
  policy {
@@ -14947,6 +16746,13 @@ export const UpdateWorkflow = gql `
14947
16746
  }
14948
16747
  }
14949
16748
  }
16749
+ entityResolution {
16750
+ strategy
16751
+ threshold
16752
+ specification {
16753
+ id
16754
+ }
16755
+ }
14950
16756
  }
14951
16757
  storage {
14952
16758
  policy {
@@ -15178,6 +16984,13 @@ export const UpsertWorkflow = gql `
15178
16984
  }
15179
16985
  }
15180
16986
  }
16987
+ entityResolution {
16988
+ strategy
16989
+ threshold
16990
+ specification {
16991
+ id
16992
+ }
16993
+ }
15181
16994
  }
15182
16995
  storage {
15183
16996
  policy {