graphlit-client 1.0.20251129001 → 1.0.20251129003

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.
@@ -7167,6 +7167,93 @@ export const QueryEvents = gql `
7167
7167
  }
7168
7168
  }
7169
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
+ `;
7170
7257
  export const UpdateEvent = gql `
7171
7258
  mutation UpdateEvent($event: EventUpdateInput!) {
7172
7259
  updateEvent(event: $event) {
@@ -8375,6 +8462,95 @@ export const QueryInvestments = gql `
8375
8462
  }
8376
8463
  }
8377
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
+ investor {
8534
+ id
8535
+ name
8536
+ }
8537
+ organization {
8538
+ id
8539
+ name
8540
+ }
8541
+ }
8542
+ clusters {
8543
+ clusters {
8544
+ entities {
8545
+ id
8546
+ name
8547
+ }
8548
+ similarity
8549
+ }
8550
+ }
8551
+ }
8552
+ }
8553
+ `;
8378
8554
  export const QueryInvestmentsExpanded = gql `
8379
8555
  query QueryInvestmentsExpanded($filter: InvestmentFilter, $correlationId: String) {
8380
8556
  investments(filter: $filter, correlationId: $correlationId) {
@@ -8645,6 +8821,98 @@ export const QueryInvestmentFunds = gql `
8645
8821
  }
8646
8822
  }
8647
8823
  `;
8824
+ export const QueryInvestmentFundsClusters = gql `
8825
+ query QueryInvestmentFundsClusters($filter: InvestmentFundFilter, $clusters: EntityClustersInput, $correlationId: String) {
8826
+ investmentFunds(
8827
+ filter: $filter
8828
+ clusters: $clusters
8829
+ correlationId: $correlationId
8830
+ ) {
8831
+ results {
8832
+ id
8833
+ name
8834
+ creationDate
8835
+ modifiedDate
8836
+ relevance
8837
+ owner {
8838
+ id
8839
+ }
8840
+ state
8841
+ alternateNames
8842
+ uri
8843
+ description
8844
+ identifier
8845
+ thing
8846
+ feeds {
8847
+ id
8848
+ name
8849
+ }
8850
+ links {
8851
+ uri
8852
+ linkType
8853
+ excerpts
8854
+ }
8855
+ workflow {
8856
+ id
8857
+ name
8858
+ }
8859
+ location {
8860
+ latitude
8861
+ longitude
8862
+ }
8863
+ h3 {
8864
+ h3r0
8865
+ h3r1
8866
+ h3r2
8867
+ h3r3
8868
+ h3r4
8869
+ h3r5
8870
+ h3r6
8871
+ h3r7
8872
+ h3r8
8873
+ h3r9
8874
+ h3r10
8875
+ h3r11
8876
+ h3r12
8877
+ h3r13
8878
+ h3r14
8879
+ h3r15
8880
+ }
8881
+ amount
8882
+ amountCurrency
8883
+ fundType
8884
+ vintage
8885
+ targetSize
8886
+ targetSizeCurrency
8887
+ organizations {
8888
+ id
8889
+ name
8890
+ }
8891
+ investments {
8892
+ id
8893
+ name
8894
+ }
8895
+ parentFund {
8896
+ id
8897
+ name
8898
+ }
8899
+ childFunds {
8900
+ id
8901
+ name
8902
+ }
8903
+ }
8904
+ clusters {
8905
+ clusters {
8906
+ entities {
8907
+ id
8908
+ name
8909
+ }
8910
+ similarity
8911
+ }
8912
+ }
8913
+ }
8914
+ }
8915
+ `;
8648
8916
  export const QueryInvestmentFundsExpanded = gql `
8649
8917
  query QueryInvestmentFundsExpanded($filter: InvestmentFundFilter, $correlationId: String) {
8650
8918
  investmentFunds(filter: $filter, correlationId: $correlationId) {
@@ -8976,16 +9244,86 @@ export const QueryMedicalConditions = gql `
8976
9244
  }
8977
9245
  }
8978
9246
  `;
8979
- export const UpdateMedicalCondition = gql `
8980
- mutation UpdateMedicalCondition($medicalCondition: MedicalConditionUpdateInput!) {
8981
- updateMedicalCondition(medicalCondition: $medicalCondition) {
8982
- id
8983
- name
8984
- }
8985
- }
8986
- `;
8987
- export const CountMedicalContraindications = gql `
8988
- query CountMedicalContraindications($filter: MedicalContraindicationFilter, $correlationId: String) {
9247
+ export const QueryMedicalConditionsClusters = gql `
9248
+ query QueryMedicalConditionsClusters($filter: MedicalConditionFilter, $clusters: EntityClustersInput, $correlationId: String) {
9249
+ medicalConditions(
9250
+ filter: $filter
9251
+ clusters: $clusters
9252
+ correlationId: $correlationId
9253
+ ) {
9254
+ results {
9255
+ id
9256
+ name
9257
+ creationDate
9258
+ modifiedDate
9259
+ relevance
9260
+ owner {
9261
+ id
9262
+ }
9263
+ state
9264
+ alternateNames
9265
+ uri
9266
+ description
9267
+ identifier
9268
+ thing
9269
+ feeds {
9270
+ id
9271
+ name
9272
+ }
9273
+ links {
9274
+ uri
9275
+ linkType
9276
+ excerpts
9277
+ }
9278
+ workflow {
9279
+ id
9280
+ name
9281
+ }
9282
+ location {
9283
+ latitude
9284
+ longitude
9285
+ }
9286
+ h3 {
9287
+ h3r0
9288
+ h3r1
9289
+ h3r2
9290
+ h3r3
9291
+ h3r4
9292
+ h3r5
9293
+ h3r6
9294
+ h3r7
9295
+ h3r8
9296
+ h3r9
9297
+ h3r10
9298
+ h3r11
9299
+ h3r12
9300
+ h3r13
9301
+ h3r14
9302
+ h3r15
9303
+ }
9304
+ }
9305
+ clusters {
9306
+ clusters {
9307
+ entities {
9308
+ id
9309
+ name
9310
+ }
9311
+ similarity
9312
+ }
9313
+ }
9314
+ }
9315
+ }
9316
+ `;
9317
+ export const UpdateMedicalCondition = gql `
9318
+ mutation UpdateMedicalCondition($medicalCondition: MedicalConditionUpdateInput!) {
9319
+ updateMedicalCondition(medicalCondition: $medicalCondition) {
9320
+ id
9321
+ name
9322
+ }
9323
+ }
9324
+ `;
9325
+ export const CountMedicalContraindications = gql `
9326
+ query CountMedicalContraindications($filter: MedicalContraindicationFilter, $correlationId: String) {
8989
9327
  countMedicalContraindications(filter: $filter, correlationId: $correlationId) {
8990
9328
  count
8991
9329
  }
@@ -9138,6 +9476,76 @@ export const QueryMedicalContraindications = gql `
9138
9476
  }
9139
9477
  }
9140
9478
  `;
9479
+ export const QueryMedicalContraindicationsClusters = gql `
9480
+ query QueryMedicalContraindicationsClusters($filter: MedicalContraindicationFilter, $clusters: EntityClustersInput, $correlationId: String) {
9481
+ medicalContraindications(
9482
+ filter: $filter
9483
+ clusters: $clusters
9484
+ correlationId: $correlationId
9485
+ ) {
9486
+ results {
9487
+ id
9488
+ name
9489
+ creationDate
9490
+ modifiedDate
9491
+ relevance
9492
+ owner {
9493
+ id
9494
+ }
9495
+ state
9496
+ alternateNames
9497
+ uri
9498
+ description
9499
+ identifier
9500
+ thing
9501
+ feeds {
9502
+ id
9503
+ name
9504
+ }
9505
+ links {
9506
+ uri
9507
+ linkType
9508
+ excerpts
9509
+ }
9510
+ workflow {
9511
+ id
9512
+ name
9513
+ }
9514
+ location {
9515
+ latitude
9516
+ longitude
9517
+ }
9518
+ h3 {
9519
+ h3r0
9520
+ h3r1
9521
+ h3r2
9522
+ h3r3
9523
+ h3r4
9524
+ h3r5
9525
+ h3r6
9526
+ h3r7
9527
+ h3r8
9528
+ h3r9
9529
+ h3r10
9530
+ h3r11
9531
+ h3r12
9532
+ h3r13
9533
+ h3r14
9534
+ h3r15
9535
+ }
9536
+ }
9537
+ clusters {
9538
+ clusters {
9539
+ entities {
9540
+ id
9541
+ name
9542
+ }
9543
+ similarity
9544
+ }
9545
+ }
9546
+ }
9547
+ }
9548
+ `;
9141
9549
  export const UpdateMedicalContraindication = gql `
9142
9550
  mutation UpdateMedicalContraindication($medicalContraindication: MedicalContraindicationUpdateInput!) {
9143
9551
  updateMedicalContraindication(medicalContraindication: $medicalContraindication) {
@@ -9300,6 +9708,76 @@ export const QueryMedicalDevices = gql `
9300
9708
  }
9301
9709
  }
9302
9710
  `;
9711
+ export const QueryMedicalDevicesClusters = gql `
9712
+ query QueryMedicalDevicesClusters($filter: MedicalDeviceFilter, $clusters: EntityClustersInput, $correlationId: String) {
9713
+ medicalDevices(
9714
+ filter: $filter
9715
+ clusters: $clusters
9716
+ correlationId: $correlationId
9717
+ ) {
9718
+ results {
9719
+ id
9720
+ name
9721
+ creationDate
9722
+ modifiedDate
9723
+ relevance
9724
+ owner {
9725
+ id
9726
+ }
9727
+ state
9728
+ alternateNames
9729
+ uri
9730
+ description
9731
+ identifier
9732
+ thing
9733
+ feeds {
9734
+ id
9735
+ name
9736
+ }
9737
+ links {
9738
+ uri
9739
+ linkType
9740
+ excerpts
9741
+ }
9742
+ workflow {
9743
+ id
9744
+ name
9745
+ }
9746
+ location {
9747
+ latitude
9748
+ longitude
9749
+ }
9750
+ h3 {
9751
+ h3r0
9752
+ h3r1
9753
+ h3r2
9754
+ h3r3
9755
+ h3r4
9756
+ h3r5
9757
+ h3r6
9758
+ h3r7
9759
+ h3r8
9760
+ h3r9
9761
+ h3r10
9762
+ h3r11
9763
+ h3r12
9764
+ h3r13
9765
+ h3r14
9766
+ h3r15
9767
+ }
9768
+ }
9769
+ clusters {
9770
+ clusters {
9771
+ entities {
9772
+ id
9773
+ name
9774
+ }
9775
+ similarity
9776
+ }
9777
+ }
9778
+ }
9779
+ }
9780
+ `;
9303
9781
  export const UpdateMedicalDevice = gql `
9304
9782
  mutation UpdateMedicalDevice($medicalDevice: MedicalDeviceUpdateInput!) {
9305
9783
  updateMedicalDevice(medicalDevice: $medicalDevice) {
@@ -9462,6 +9940,76 @@ export const QueryMedicalDrugs = gql `
9462
9940
  }
9463
9941
  }
9464
9942
  `;
9943
+ export const QueryMedicalDrugsClusters = gql `
9944
+ query QueryMedicalDrugsClusters($filter: MedicalDrugFilter, $clusters: EntityClustersInput, $correlationId: String) {
9945
+ medicalDrugs(
9946
+ filter: $filter
9947
+ clusters: $clusters
9948
+ correlationId: $correlationId
9949
+ ) {
9950
+ results {
9951
+ id
9952
+ name
9953
+ creationDate
9954
+ modifiedDate
9955
+ relevance
9956
+ owner {
9957
+ id
9958
+ }
9959
+ state
9960
+ alternateNames
9961
+ uri
9962
+ description
9963
+ identifier
9964
+ thing
9965
+ feeds {
9966
+ id
9967
+ name
9968
+ }
9969
+ links {
9970
+ uri
9971
+ linkType
9972
+ excerpts
9973
+ }
9974
+ workflow {
9975
+ id
9976
+ name
9977
+ }
9978
+ location {
9979
+ latitude
9980
+ longitude
9981
+ }
9982
+ h3 {
9983
+ h3r0
9984
+ h3r1
9985
+ h3r2
9986
+ h3r3
9987
+ h3r4
9988
+ h3r5
9989
+ h3r6
9990
+ h3r7
9991
+ h3r8
9992
+ h3r9
9993
+ h3r10
9994
+ h3r11
9995
+ h3r12
9996
+ h3r13
9997
+ h3r14
9998
+ h3r15
9999
+ }
10000
+ }
10001
+ clusters {
10002
+ clusters {
10003
+ entities {
10004
+ id
10005
+ name
10006
+ }
10007
+ similarity
10008
+ }
10009
+ }
10010
+ }
10011
+ }
10012
+ `;
9465
10013
  export const UpdateMedicalDrug = gql `
9466
10014
  mutation UpdateMedicalDrug($medicalDrug: MedicalDrugUpdateInput!) {
9467
10015
  updateMedicalDrug(medicalDrug: $medicalDrug) {
@@ -9624,6 +10172,76 @@ export const QueryMedicalDrugClasses = gql `
9624
10172
  }
9625
10173
  }
9626
10174
  `;
10175
+ export const QueryMedicalDrugClassesClusters = gql `
10176
+ query QueryMedicalDrugClassesClusters($filter: MedicalDrugClassFilter, $clusters: EntityClustersInput, $correlationId: String) {
10177
+ medicalDrugClasses(
10178
+ filter: $filter
10179
+ clusters: $clusters
10180
+ correlationId: $correlationId
10181
+ ) {
10182
+ results {
10183
+ id
10184
+ name
10185
+ creationDate
10186
+ modifiedDate
10187
+ relevance
10188
+ owner {
10189
+ id
10190
+ }
10191
+ state
10192
+ alternateNames
10193
+ uri
10194
+ description
10195
+ identifier
10196
+ thing
10197
+ feeds {
10198
+ id
10199
+ name
10200
+ }
10201
+ links {
10202
+ uri
10203
+ linkType
10204
+ excerpts
10205
+ }
10206
+ workflow {
10207
+ id
10208
+ name
10209
+ }
10210
+ location {
10211
+ latitude
10212
+ longitude
10213
+ }
10214
+ h3 {
10215
+ h3r0
10216
+ h3r1
10217
+ h3r2
10218
+ h3r3
10219
+ h3r4
10220
+ h3r5
10221
+ h3r6
10222
+ h3r7
10223
+ h3r8
10224
+ h3r9
10225
+ h3r10
10226
+ h3r11
10227
+ h3r12
10228
+ h3r13
10229
+ h3r14
10230
+ h3r15
10231
+ }
10232
+ }
10233
+ clusters {
10234
+ clusters {
10235
+ entities {
10236
+ id
10237
+ name
10238
+ }
10239
+ similarity
10240
+ }
10241
+ }
10242
+ }
10243
+ }
10244
+ `;
9627
10245
  export const UpdateMedicalDrugClass = gql `
9628
10246
  mutation UpdateMedicalDrugClass($medicalDrugClass: MedicalDrugClassUpdateInput!) {
9629
10247
  updateMedicalDrugClass(medicalDrugClass: $medicalDrugClass) {
@@ -9786,6 +10404,76 @@ export const QueryMedicalGuidelines = gql `
9786
10404
  }
9787
10405
  }
9788
10406
  `;
10407
+ export const QueryMedicalGuidelinesClusters = gql `
10408
+ query QueryMedicalGuidelinesClusters($filter: MedicalGuidelineFilter, $clusters: EntityClustersInput, $correlationId: String) {
10409
+ medicalGuidelines(
10410
+ filter: $filter
10411
+ clusters: $clusters
10412
+ correlationId: $correlationId
10413
+ ) {
10414
+ results {
10415
+ id
10416
+ name
10417
+ creationDate
10418
+ modifiedDate
10419
+ relevance
10420
+ owner {
10421
+ id
10422
+ }
10423
+ state
10424
+ alternateNames
10425
+ uri
10426
+ description
10427
+ identifier
10428
+ thing
10429
+ feeds {
10430
+ id
10431
+ name
10432
+ }
10433
+ links {
10434
+ uri
10435
+ linkType
10436
+ excerpts
10437
+ }
10438
+ workflow {
10439
+ id
10440
+ name
10441
+ }
10442
+ location {
10443
+ latitude
10444
+ longitude
10445
+ }
10446
+ h3 {
10447
+ h3r0
10448
+ h3r1
10449
+ h3r2
10450
+ h3r3
10451
+ h3r4
10452
+ h3r5
10453
+ h3r6
10454
+ h3r7
10455
+ h3r8
10456
+ h3r9
10457
+ h3r10
10458
+ h3r11
10459
+ h3r12
10460
+ h3r13
10461
+ h3r14
10462
+ h3r15
10463
+ }
10464
+ }
10465
+ clusters {
10466
+ clusters {
10467
+ entities {
10468
+ id
10469
+ name
10470
+ }
10471
+ similarity
10472
+ }
10473
+ }
10474
+ }
10475
+ }
10476
+ `;
9789
10477
  export const UpdateMedicalGuideline = gql `
9790
10478
  mutation UpdateMedicalGuideline($medicalGuideline: MedicalGuidelineUpdateInput!) {
9791
10479
  updateMedicalGuideline(medicalGuideline: $medicalGuideline) {
@@ -9891,9 +10579,70 @@ export const GetMedicalIndication = gql `
9891
10579
  }
9892
10580
  }
9893
10581
  `;
9894
- export const QueryMedicalIndications = gql `
9895
- query QueryMedicalIndications($filter: MedicalIndicationFilter, $correlationId: String) {
9896
- medicalIndications(filter: $filter, correlationId: $correlationId) {
10582
+ export const QueryMedicalIndications = gql `
10583
+ query QueryMedicalIndications($filter: MedicalIndicationFilter, $correlationId: String) {
10584
+ medicalIndications(filter: $filter, correlationId: $correlationId) {
10585
+ results {
10586
+ id
10587
+ name
10588
+ creationDate
10589
+ modifiedDate
10590
+ relevance
10591
+ owner {
10592
+ id
10593
+ }
10594
+ state
10595
+ alternateNames
10596
+ uri
10597
+ description
10598
+ identifier
10599
+ thing
10600
+ feeds {
10601
+ id
10602
+ name
10603
+ }
10604
+ links {
10605
+ uri
10606
+ linkType
10607
+ excerpts
10608
+ }
10609
+ workflow {
10610
+ id
10611
+ name
10612
+ }
10613
+ location {
10614
+ latitude
10615
+ longitude
10616
+ }
10617
+ h3 {
10618
+ h3r0
10619
+ h3r1
10620
+ h3r2
10621
+ h3r3
10622
+ h3r4
10623
+ h3r5
10624
+ h3r6
10625
+ h3r7
10626
+ h3r8
10627
+ h3r9
10628
+ h3r10
10629
+ h3r11
10630
+ h3r12
10631
+ h3r13
10632
+ h3r14
10633
+ h3r15
10634
+ }
10635
+ }
10636
+ }
10637
+ }
10638
+ `;
10639
+ export const QueryMedicalIndicationsClusters = gql `
10640
+ query QueryMedicalIndicationsClusters($filter: MedicalIndicationFilter, $clusters: EntityClustersInput, $correlationId: String) {
10641
+ medicalIndications(
10642
+ filter: $filter
10643
+ clusters: $clusters
10644
+ correlationId: $correlationId
10645
+ ) {
9897
10646
  results {
9898
10647
  id
9899
10648
  name
@@ -9945,6 +10694,15 @@ export const QueryMedicalIndications = gql `
9945
10694
  h3r15
9946
10695
  }
9947
10696
  }
10697
+ clusters {
10698
+ clusters {
10699
+ entities {
10700
+ id
10701
+ name
10702
+ }
10703
+ similarity
10704
+ }
10705
+ }
9948
10706
  }
9949
10707
  }
9950
10708
  `;
@@ -10110,6 +10868,76 @@ export const QueryMedicalProcedures = gql `
10110
10868
  }
10111
10869
  }
10112
10870
  `;
10871
+ export const QueryMedicalProceduresClusters = gql `
10872
+ query QueryMedicalProceduresClusters($filter: MedicalProcedureFilter, $clusters: EntityClustersInput, $correlationId: String) {
10873
+ medicalProcedures(
10874
+ filter: $filter
10875
+ clusters: $clusters
10876
+ correlationId: $correlationId
10877
+ ) {
10878
+ results {
10879
+ id
10880
+ name
10881
+ creationDate
10882
+ modifiedDate
10883
+ relevance
10884
+ owner {
10885
+ id
10886
+ }
10887
+ state
10888
+ alternateNames
10889
+ uri
10890
+ description
10891
+ identifier
10892
+ thing
10893
+ feeds {
10894
+ id
10895
+ name
10896
+ }
10897
+ links {
10898
+ uri
10899
+ linkType
10900
+ excerpts
10901
+ }
10902
+ workflow {
10903
+ id
10904
+ name
10905
+ }
10906
+ location {
10907
+ latitude
10908
+ longitude
10909
+ }
10910
+ h3 {
10911
+ h3r0
10912
+ h3r1
10913
+ h3r2
10914
+ h3r3
10915
+ h3r4
10916
+ h3r5
10917
+ h3r6
10918
+ h3r7
10919
+ h3r8
10920
+ h3r9
10921
+ h3r10
10922
+ h3r11
10923
+ h3r12
10924
+ h3r13
10925
+ h3r14
10926
+ h3r15
10927
+ }
10928
+ }
10929
+ clusters {
10930
+ clusters {
10931
+ entities {
10932
+ id
10933
+ name
10934
+ }
10935
+ similarity
10936
+ }
10937
+ }
10938
+ }
10939
+ }
10940
+ `;
10113
10941
  export const UpdateMedicalProcedure = gql `
10114
10942
  mutation UpdateMedicalProcedure($medicalProcedure: MedicalProcedureUpdateInput!) {
10115
10943
  updateMedicalProcedure(medicalProcedure: $medicalProcedure) {
@@ -10286,6 +11114,83 @@ export const QueryMedicalStudies = gql `
10286
11114
  }
10287
11115
  }
10288
11116
  `;
11117
+ export const QueryMedicalStudiesClusters = gql `
11118
+ query QueryMedicalStudiesClusters($filter: MedicalStudyFilter, $clusters: EntityClustersInput, $correlationId: String) {
11119
+ medicalStudies(
11120
+ filter: $filter
11121
+ clusters: $clusters
11122
+ correlationId: $correlationId
11123
+ ) {
11124
+ results {
11125
+ id
11126
+ name
11127
+ creationDate
11128
+ modifiedDate
11129
+ relevance
11130
+ owner {
11131
+ id
11132
+ }
11133
+ state
11134
+ alternateNames
11135
+ uri
11136
+ description
11137
+ identifier
11138
+ thing
11139
+ feeds {
11140
+ id
11141
+ name
11142
+ }
11143
+ links {
11144
+ uri
11145
+ linkType
11146
+ excerpts
11147
+ }
11148
+ workflow {
11149
+ id
11150
+ name
11151
+ }
11152
+ location {
11153
+ latitude
11154
+ longitude
11155
+ }
11156
+ h3 {
11157
+ h3r0
11158
+ h3r1
11159
+ h3r2
11160
+ h3r3
11161
+ h3r4
11162
+ h3r5
11163
+ h3r6
11164
+ h3r7
11165
+ h3r8
11166
+ h3r9
11167
+ h3r10
11168
+ h3r11
11169
+ h3r12
11170
+ h3r13
11171
+ h3r14
11172
+ h3r15
11173
+ }
11174
+ address {
11175
+ streetAddress
11176
+ city
11177
+ region
11178
+ country
11179
+ postalCode
11180
+ }
11181
+ }
11182
+ clusters {
11183
+ clusters {
11184
+ entities {
11185
+ id
11186
+ name
11187
+ }
11188
+ similarity
11189
+ }
11190
+ }
11191
+ }
11192
+ }
11193
+ `;
10289
11194
  export const UpdateMedicalStudy = gql `
10290
11195
  mutation UpdateMedicalStudy($medicalStudy: MedicalStudyUpdateInput!) {
10291
11196
  updateMedicalStudy(medicalStudy: $medicalStudy) {
@@ -10448,6 +11353,76 @@ export const QueryMedicalTests = gql `
10448
11353
  }
10449
11354
  }
10450
11355
  `;
11356
+ export const QueryMedicalTestsClusters = gql `
11357
+ query QueryMedicalTestsClusters($filter: MedicalTestFilter, $clusters: EntityClustersInput, $correlationId: String) {
11358
+ medicalTests(
11359
+ filter: $filter
11360
+ clusters: $clusters
11361
+ correlationId: $correlationId
11362
+ ) {
11363
+ results {
11364
+ id
11365
+ name
11366
+ creationDate
11367
+ modifiedDate
11368
+ relevance
11369
+ owner {
11370
+ id
11371
+ }
11372
+ state
11373
+ alternateNames
11374
+ uri
11375
+ description
11376
+ identifier
11377
+ thing
11378
+ feeds {
11379
+ id
11380
+ name
11381
+ }
11382
+ links {
11383
+ uri
11384
+ linkType
11385
+ excerpts
11386
+ }
11387
+ workflow {
11388
+ id
11389
+ name
11390
+ }
11391
+ location {
11392
+ latitude
11393
+ longitude
11394
+ }
11395
+ h3 {
11396
+ h3r0
11397
+ h3r1
11398
+ h3r2
11399
+ h3r3
11400
+ h3r4
11401
+ h3r5
11402
+ h3r6
11403
+ h3r7
11404
+ h3r8
11405
+ h3r9
11406
+ h3r10
11407
+ h3r11
11408
+ h3r12
11409
+ h3r13
11410
+ h3r14
11411
+ h3r15
11412
+ }
11413
+ }
11414
+ clusters {
11415
+ clusters {
11416
+ entities {
11417
+ id
11418
+ name
11419
+ }
11420
+ similarity
11421
+ }
11422
+ }
11423
+ }
11424
+ }
11425
+ `;
10451
11426
  export const UpdateMedicalTest = gql `
10452
11427
  mutation UpdateMedicalTest($medicalTest: MedicalTestUpdateInput!) {
10453
11428
  updateMedicalTest(medicalTest: $medicalTest) {
@@ -10553,9 +11528,70 @@ export const GetMedicalTherapy = gql `
10553
11528
  }
10554
11529
  }
10555
11530
  `;
10556
- export const QueryMedicalTherapies = gql `
10557
- query QueryMedicalTherapies($filter: MedicalTherapyFilter, $correlationId: String) {
10558
- medicalTherapies(filter: $filter, correlationId: $correlationId) {
11531
+ export const QueryMedicalTherapies = gql `
11532
+ query QueryMedicalTherapies($filter: MedicalTherapyFilter, $correlationId: String) {
11533
+ medicalTherapies(filter: $filter, correlationId: $correlationId) {
11534
+ results {
11535
+ id
11536
+ name
11537
+ creationDate
11538
+ modifiedDate
11539
+ relevance
11540
+ owner {
11541
+ id
11542
+ }
11543
+ state
11544
+ alternateNames
11545
+ uri
11546
+ description
11547
+ identifier
11548
+ thing
11549
+ feeds {
11550
+ id
11551
+ name
11552
+ }
11553
+ links {
11554
+ uri
11555
+ linkType
11556
+ excerpts
11557
+ }
11558
+ workflow {
11559
+ id
11560
+ name
11561
+ }
11562
+ location {
11563
+ latitude
11564
+ longitude
11565
+ }
11566
+ h3 {
11567
+ h3r0
11568
+ h3r1
11569
+ h3r2
11570
+ h3r3
11571
+ h3r4
11572
+ h3r5
11573
+ h3r6
11574
+ h3r7
11575
+ h3r8
11576
+ h3r9
11577
+ h3r10
11578
+ h3r11
11579
+ h3r12
11580
+ h3r13
11581
+ h3r14
11582
+ h3r15
11583
+ }
11584
+ }
11585
+ }
11586
+ }
11587
+ `;
11588
+ export const QueryMedicalTherapiesClusters = gql `
11589
+ query QueryMedicalTherapiesClusters($filter: MedicalTherapyFilter, $clusters: EntityClustersInput, $correlationId: String) {
11590
+ medicalTherapies(
11591
+ filter: $filter
11592
+ clusters: $clusters
11593
+ correlationId: $correlationId
11594
+ ) {
10559
11595
  results {
10560
11596
  id
10561
11597
  name
@@ -10607,6 +11643,15 @@ export const QueryMedicalTherapies = gql `
10607
11643
  h3r15
10608
11644
  }
10609
11645
  }
11646
+ clusters {
11647
+ clusters {
11648
+ entities {
11649
+ id
11650
+ name
11651
+ }
11652
+ similarity
11653
+ }
11654
+ }
10610
11655
  }
10611
11656
  }
10612
11657
  `;
@@ -10959,6 +12004,128 @@ export const QueryOrganizations = gql `
10959
12004
  }
10960
12005
  }
10961
12006
  `;
12007
+ export const QueryOrganizationsClusters = gql `
12008
+ query QueryOrganizationsClusters($filter: OrganizationFilter, $clusters: EntityClustersInput, $correlationId: String) {
12009
+ organizations(
12010
+ filter: $filter
12011
+ clusters: $clusters
12012
+ correlationId: $correlationId
12013
+ ) {
12014
+ results {
12015
+ id
12016
+ name
12017
+ creationDate
12018
+ modifiedDate
12019
+ relevance
12020
+ owner {
12021
+ id
12022
+ }
12023
+ state
12024
+ alternateNames
12025
+ uri
12026
+ description
12027
+ identifier
12028
+ thing
12029
+ feeds {
12030
+ id
12031
+ name
12032
+ }
12033
+ links {
12034
+ uri
12035
+ linkType
12036
+ excerpts
12037
+ }
12038
+ workflow {
12039
+ id
12040
+ name
12041
+ }
12042
+ location {
12043
+ latitude
12044
+ longitude
12045
+ }
12046
+ h3 {
12047
+ h3r0
12048
+ h3r1
12049
+ h3r2
12050
+ h3r3
12051
+ h3r4
12052
+ h3r5
12053
+ h3r6
12054
+ h3r7
12055
+ h3r8
12056
+ h3r9
12057
+ h3r10
12058
+ h3r11
12059
+ h3r12
12060
+ h3r13
12061
+ h3r14
12062
+ h3r15
12063
+ }
12064
+ address {
12065
+ streetAddress
12066
+ city
12067
+ region
12068
+ country
12069
+ postalCode
12070
+ }
12071
+ foundingDate
12072
+ email
12073
+ telephone
12074
+ legalName
12075
+ industries
12076
+ revenue
12077
+ revenueCurrency
12078
+ investment
12079
+ investmentCurrency
12080
+ founders {
12081
+ id
12082
+ name
12083
+ }
12084
+ employees {
12085
+ id
12086
+ name
12087
+ }
12088
+ members {
12089
+ id
12090
+ name
12091
+ }
12092
+ parentOrganization {
12093
+ id
12094
+ name
12095
+ }
12096
+ memberOf {
12097
+ id
12098
+ name
12099
+ }
12100
+ subOrganizations {
12101
+ id
12102
+ name
12103
+ }
12104
+ locations {
12105
+ id
12106
+ name
12107
+ }
12108
+ investmentsReceived {
12109
+ id
12110
+ name
12111
+ }
12112
+ investorFunds {
12113
+ id
12114
+ name
12115
+ }
12116
+ }
12117
+ clusters {
12118
+ clusters {
12119
+ entities {
12120
+ id
12121
+ name
12122
+ }
12123
+ similarity
12124
+ }
12125
+ }
12126
+ }
12127
+ }
12128
+ `;
10962
12129
  export const QueryOrganizationsExpanded = gql `
10963
12130
  query QueryOrganizationsExpanded($filter: OrganizationFilter, $correlationId: String) {
10964
12131
  organizations(filter: $filter, correlationId: $correlationId) {
@@ -11304,6 +12471,119 @@ export const QueryPersons = gql `
11304
12471
  }
11305
12472
  }
11306
12473
  `;
12474
+ export const QueryPersonsClusters = gql `
12475
+ query QueryPersonsClusters($filter: PersonFilter, $clusters: EntityClustersInput, $correlationId: String) {
12476
+ persons(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
12477
+ results {
12478
+ id
12479
+ name
12480
+ creationDate
12481
+ modifiedDate
12482
+ relevance
12483
+ owner {
12484
+ id
12485
+ }
12486
+ state
12487
+ alternateNames
12488
+ uri
12489
+ description
12490
+ identifier
12491
+ thing
12492
+ feeds {
12493
+ id
12494
+ name
12495
+ }
12496
+ links {
12497
+ uri
12498
+ linkType
12499
+ excerpts
12500
+ }
12501
+ workflow {
12502
+ id
12503
+ name
12504
+ }
12505
+ location {
12506
+ latitude
12507
+ longitude
12508
+ }
12509
+ h3 {
12510
+ h3r0
12511
+ h3r1
12512
+ h3r2
12513
+ h3r3
12514
+ h3r4
12515
+ h3r5
12516
+ h3r6
12517
+ h3r7
12518
+ h3r8
12519
+ h3r9
12520
+ h3r10
12521
+ h3r11
12522
+ h3r12
12523
+ h3r13
12524
+ h3r14
12525
+ h3r15
12526
+ }
12527
+ address {
12528
+ streetAddress
12529
+ city
12530
+ region
12531
+ country
12532
+ postalCode
12533
+ }
12534
+ email
12535
+ givenName
12536
+ familyName
12537
+ phoneNumber
12538
+ birthDate
12539
+ title
12540
+ occupation
12541
+ education
12542
+ worksFor {
12543
+ id
12544
+ name
12545
+ }
12546
+ affiliation {
12547
+ id
12548
+ name
12549
+ }
12550
+ memberOf {
12551
+ id
12552
+ name
12553
+ }
12554
+ alumniOf {
12555
+ id
12556
+ name
12557
+ }
12558
+ birthPlace {
12559
+ id
12560
+ name
12561
+ }
12562
+ deathPlace {
12563
+ id
12564
+ name
12565
+ }
12566
+ homeLocation {
12567
+ id
12568
+ name
12569
+ }
12570
+ workLocation {
12571
+ id
12572
+ name
12573
+ }
12574
+ }
12575
+ clusters {
12576
+ clusters {
12577
+ entities {
12578
+ id
12579
+ name
12580
+ }
12581
+ similarity
12582
+ }
12583
+ }
12584
+ }
12585
+ }
12586
+ `;
11307
12587
  export const QueryPersonsExpanded = gql `
11308
12588
  query QueryPersonsExpanded($filter: PersonFilter, $correlationId: String) {
11309
12589
  persons(filter: $filter, correlationId: $correlationId) {
@@ -11529,15 +12809,82 @@ export const GetPlace = gql `
11529
12809
  country
11530
12810
  postalCode
11531
12811
  }
11532
- telephone
11533
- openingHours
11534
- priceRange
12812
+ telephone
12813
+ openingHours
12814
+ priceRange
12815
+ }
12816
+ }
12817
+ `;
12818
+ export const QueryPlaces = gql `
12819
+ query QueryPlaces($filter: PlaceFilter, $correlationId: String) {
12820
+ places(filter: $filter, correlationId: $correlationId) {
12821
+ results {
12822
+ id
12823
+ name
12824
+ creationDate
12825
+ modifiedDate
12826
+ relevance
12827
+ owner {
12828
+ id
12829
+ }
12830
+ state
12831
+ alternateNames
12832
+ uri
12833
+ description
12834
+ identifier
12835
+ thing
12836
+ feeds {
12837
+ id
12838
+ name
12839
+ }
12840
+ links {
12841
+ uri
12842
+ linkType
12843
+ excerpts
12844
+ }
12845
+ workflow {
12846
+ id
12847
+ name
12848
+ }
12849
+ location {
12850
+ latitude
12851
+ longitude
12852
+ }
12853
+ h3 {
12854
+ h3r0
12855
+ h3r1
12856
+ h3r2
12857
+ h3r3
12858
+ h3r4
12859
+ h3r5
12860
+ h3r6
12861
+ h3r7
12862
+ h3r8
12863
+ h3r9
12864
+ h3r10
12865
+ h3r11
12866
+ h3r12
12867
+ h3r13
12868
+ h3r14
12869
+ h3r15
12870
+ }
12871
+ address {
12872
+ streetAddress
12873
+ city
12874
+ region
12875
+ country
12876
+ postalCode
12877
+ }
12878
+ telephone
12879
+ openingHours
12880
+ priceRange
12881
+ }
11535
12882
  }
11536
12883
  }
11537
12884
  `;
11538
- export const QueryPlaces = gql `
11539
- query QueryPlaces($filter: PlaceFilter, $correlationId: String) {
11540
- places(filter: $filter, correlationId: $correlationId) {
12885
+ export const QueryPlacesClusters = gql `
12886
+ query QueryPlacesClusters($filter: PlaceFilter, $clusters: EntityClustersInput, $correlationId: String) {
12887
+ places(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
11541
12888
  results {
11542
12889
  id
11543
12890
  name
@@ -11599,6 +12946,15 @@ export const QueryPlaces = gql `
11599
12946
  openingHours
11600
12947
  priceRange
11601
12948
  }
12949
+ clusters {
12950
+ clusters {
12951
+ entities {
12952
+ id
12953
+ name
12954
+ }
12955
+ similarity
12956
+ }
12957
+ }
11602
12958
  }
11603
12959
  }
11604
12960
  `;
@@ -11808,6 +13164,88 @@ export const QueryProducts = gql `
11808
13164
  }
11809
13165
  }
11810
13166
  `;
13167
+ export const QueryProductsClusters = gql `
13168
+ query QueryProductsClusters($filter: ProductFilter, $clusters: EntityClustersInput, $correlationId: String) {
13169
+ products(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
13170
+ results {
13171
+ id
13172
+ name
13173
+ creationDate
13174
+ modifiedDate
13175
+ relevance
13176
+ owner {
13177
+ id
13178
+ }
13179
+ state
13180
+ alternateNames
13181
+ uri
13182
+ description
13183
+ identifier
13184
+ thing
13185
+ feeds {
13186
+ id
13187
+ name
13188
+ }
13189
+ links {
13190
+ uri
13191
+ linkType
13192
+ excerpts
13193
+ }
13194
+ workflow {
13195
+ id
13196
+ name
13197
+ }
13198
+ location {
13199
+ latitude
13200
+ longitude
13201
+ }
13202
+ h3 {
13203
+ h3r0
13204
+ h3r1
13205
+ h3r2
13206
+ h3r3
13207
+ h3r4
13208
+ h3r5
13209
+ h3r6
13210
+ h3r7
13211
+ h3r8
13212
+ h3r9
13213
+ h3r10
13214
+ h3r11
13215
+ h3r12
13216
+ h3r13
13217
+ h3r14
13218
+ h3r15
13219
+ }
13220
+ address {
13221
+ streetAddress
13222
+ city
13223
+ region
13224
+ country
13225
+ postalCode
13226
+ }
13227
+ manufacturer
13228
+ model
13229
+ brand
13230
+ upc
13231
+ sku
13232
+ gtin
13233
+ mpn
13234
+ releaseDate
13235
+ productionDate
13236
+ }
13237
+ clusters {
13238
+ clusters {
13239
+ entities {
13240
+ id
13241
+ name
13242
+ }
13243
+ similarity
13244
+ }
13245
+ }
13246
+ }
13247
+ }
13248
+ `;
11811
13249
  export const UpdateProduct = gql `
11812
13250
  mutation UpdateProduct($product: ProductUpdateInput!) {
11813
13251
  updateProduct(product: $product) {
@@ -12174,6 +13612,72 @@ export const QueryRepos = gql `
12174
13612
  }
12175
13613
  }
12176
13614
  `;
13615
+ export const QueryReposClusters = gql `
13616
+ query QueryReposClusters($filter: RepoFilter, $clusters: EntityClustersInput, $correlationId: String) {
13617
+ repos(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
13618
+ results {
13619
+ id
13620
+ name
13621
+ creationDate
13622
+ modifiedDate
13623
+ relevance
13624
+ owner {
13625
+ id
13626
+ }
13627
+ state
13628
+ alternateNames
13629
+ uri
13630
+ description
13631
+ identifier
13632
+ thing
13633
+ feeds {
13634
+ id
13635
+ name
13636
+ }
13637
+ links {
13638
+ uri
13639
+ linkType
13640
+ excerpts
13641
+ }
13642
+ workflow {
13643
+ id
13644
+ name
13645
+ }
13646
+ location {
13647
+ latitude
13648
+ longitude
13649
+ }
13650
+ h3 {
13651
+ h3r0
13652
+ h3r1
13653
+ h3r2
13654
+ h3r3
13655
+ h3r4
13656
+ h3r5
13657
+ h3r6
13658
+ h3r7
13659
+ h3r8
13660
+ h3r9
13661
+ h3r10
13662
+ h3r11
13663
+ h3r12
13664
+ h3r13
13665
+ h3r14
13666
+ h3r15
13667
+ }
13668
+ }
13669
+ clusters {
13670
+ clusters {
13671
+ entities {
13672
+ id
13673
+ name
13674
+ }
13675
+ similarity
13676
+ }
13677
+ }
13678
+ }
13679
+ }
13680
+ `;
12177
13681
  export const UpdateRepo = gql `
12178
13682
  mutation UpdateRepo($repo: RepoUpdateInput!) {
12179
13683
  updateRepo(repo: $repo) {
@@ -12369,6 +13873,74 @@ export const QuerySoftwares = gql `
12369
13873
  }
12370
13874
  }
12371
13875
  `;
13876
+ export const QuerySoftwaresClusters = gql `
13877
+ query QuerySoftwaresClusters($filter: SoftwareFilter, $clusters: EntityClustersInput, $correlationId: String) {
13878
+ softwares(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
13879
+ results {
13880
+ id
13881
+ name
13882
+ creationDate
13883
+ modifiedDate
13884
+ relevance
13885
+ owner {
13886
+ id
13887
+ }
13888
+ state
13889
+ alternateNames
13890
+ uri
13891
+ description
13892
+ identifier
13893
+ thing
13894
+ feeds {
13895
+ id
13896
+ name
13897
+ }
13898
+ links {
13899
+ uri
13900
+ linkType
13901
+ excerpts
13902
+ }
13903
+ workflow {
13904
+ id
13905
+ name
13906
+ }
13907
+ location {
13908
+ latitude
13909
+ longitude
13910
+ }
13911
+ h3 {
13912
+ h3r0
13913
+ h3r1
13914
+ h3r2
13915
+ h3r3
13916
+ h3r4
13917
+ h3r5
13918
+ h3r6
13919
+ h3r7
13920
+ h3r8
13921
+ h3r9
13922
+ h3r10
13923
+ h3r11
13924
+ h3r12
13925
+ h3r13
13926
+ h3r14
13927
+ h3r15
13928
+ }
13929
+ releaseDate
13930
+ developer
13931
+ }
13932
+ clusters {
13933
+ clusters {
13934
+ entities {
13935
+ id
13936
+ name
13937
+ }
13938
+ similarity
13939
+ }
13940
+ }
13941
+ }
13942
+ }
13943
+ `;
12372
13944
  export const UpdateSoftware = gql `
12373
13945
  mutation UpdateSoftware($software: SoftwareUpdateInput!) {
12374
13946
  updateSoftware(software: $software) {