graphlit-client 1.0.20251129001 → 1.0.20251129002

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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,87 @@ 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
+ }
8534
+ clusters {
8535
+ clusters {
8536
+ entities {
8537
+ id
8538
+ name
8539
+ }
8540
+ similarity
8541
+ }
8542
+ }
8543
+ }
8544
+ }
8545
+ `;
8378
8546
  export const QueryInvestmentsExpanded = gql `
8379
8547
  query QueryInvestmentsExpanded($filter: InvestmentFilter, $correlationId: String) {
8380
8548
  investments(filter: $filter, correlationId: $correlationId) {
@@ -8645,6 +8813,82 @@ export const QueryInvestmentFunds = gql `
8645
8813
  }
8646
8814
  }
8647
8815
  `;
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
+ ) {
8823
+ results {
8824
+ id
8825
+ name
8826
+ creationDate
8827
+ modifiedDate
8828
+ relevance
8829
+ owner {
8830
+ id
8831
+ }
8832
+ state
8833
+ alternateNames
8834
+ uri
8835
+ description
8836
+ identifier
8837
+ thing
8838
+ feeds {
8839
+ id
8840
+ name
8841
+ }
8842
+ links {
8843
+ uri
8844
+ linkType
8845
+ excerpts
8846
+ }
8847
+ workflow {
8848
+ id
8849
+ name
8850
+ }
8851
+ location {
8852
+ latitude
8853
+ longitude
8854
+ }
8855
+ h3 {
8856
+ h3r0
8857
+ h3r1
8858
+ h3r2
8859
+ h3r3
8860
+ h3r4
8861
+ h3r5
8862
+ h3r6
8863
+ h3r7
8864
+ h3r8
8865
+ h3r9
8866
+ h3r10
8867
+ h3r11
8868
+ h3r12
8869
+ h3r13
8870
+ h3r14
8871
+ h3r15
8872
+ }
8873
+ amount
8874
+ amountCurrency
8875
+ fundType
8876
+ vintage
8877
+ targetSize
8878
+ targetSizeCurrency
8879
+ }
8880
+ clusters {
8881
+ clusters {
8882
+ entities {
8883
+ id
8884
+ name
8885
+ }
8886
+ similarity
8887
+ }
8888
+ }
8889
+ }
8890
+ }
8891
+ `;
8648
8892
  export const QueryInvestmentFundsExpanded = gql `
8649
8893
  query QueryInvestmentFundsExpanded($filter: InvestmentFundFilter, $correlationId: String) {
8650
8894
  investmentFunds(filter: $filter, correlationId: $correlationId) {
@@ -8976,43 +9220,113 @@ export const QueryMedicalConditions = gql `
8976
9220
  }
8977
9221
  }
8978
9222
  `;
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) {
8989
- countMedicalContraindications(filter: $filter, correlationId: $correlationId) {
8990
- count
8991
- }
8992
- }
8993
- `;
8994
- export const CreateMedicalContraindication = gql `
8995
- mutation CreateMedicalContraindication($medicalContraindication: MedicalContraindicationInput!) {
8996
- createMedicalContraindication(medicalContraindication: $medicalContraindication) {
8997
- id
8998
- name
8999
- }
9000
- }
9001
- `;
9002
- export const DeleteAllMedicalContraindications = gql `
9003
- mutation DeleteAllMedicalContraindications($filter: MedicalContraindicationFilter, $isSynchronous: Boolean, $correlationId: String) {
9004
- deleteAllMedicalContraindications(
9223
+ export const QueryMedicalConditionsClusters = gql `
9224
+ query QueryMedicalConditionsClusters($filter: MedicalConditionFilter, $clusters: EntityClustersInput, $correlationId: String) {
9225
+ medicalConditions(
9005
9226
  filter: $filter
9006
- isSynchronous: $isSynchronous
9227
+ clusters: $clusters
9007
9228
  correlationId: $correlationId
9008
9229
  ) {
9009
- id
9010
- state
9011
- }
9012
- }
9013
- `;
9014
- export const DeleteMedicalContraindication = gql `
9015
- mutation DeleteMedicalContraindication($id: ID!) {
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
+ `;
9293
+ export const UpdateMedicalCondition = gql `
9294
+ mutation UpdateMedicalCondition($medicalCondition: MedicalConditionUpdateInput!) {
9295
+ updateMedicalCondition(medicalCondition: $medicalCondition) {
9296
+ id
9297
+ name
9298
+ }
9299
+ }
9300
+ `;
9301
+ export const CountMedicalContraindications = gql `
9302
+ query CountMedicalContraindications($filter: MedicalContraindicationFilter, $correlationId: String) {
9303
+ countMedicalContraindications(filter: $filter, correlationId: $correlationId) {
9304
+ count
9305
+ }
9306
+ }
9307
+ `;
9308
+ export const CreateMedicalContraindication = gql `
9309
+ mutation CreateMedicalContraindication($medicalContraindication: MedicalContraindicationInput!) {
9310
+ createMedicalContraindication(medicalContraindication: $medicalContraindication) {
9311
+ id
9312
+ name
9313
+ }
9314
+ }
9315
+ `;
9316
+ export const DeleteAllMedicalContraindications = gql `
9317
+ mutation DeleteAllMedicalContraindications($filter: MedicalContraindicationFilter, $isSynchronous: Boolean, $correlationId: String) {
9318
+ deleteAllMedicalContraindications(
9319
+ filter: $filter
9320
+ isSynchronous: $isSynchronous
9321
+ correlationId: $correlationId
9322
+ ) {
9323
+ id
9324
+ state
9325
+ }
9326
+ }
9327
+ `;
9328
+ export const DeleteMedicalContraindication = gql `
9329
+ mutation DeleteMedicalContraindication($id: ID!) {
9016
9330
  deleteMedicalContraindication(id: $id) {
9017
9331
  id
9018
9332
  state
@@ -9138,6 +9452,76 @@ export const QueryMedicalContraindications = gql `
9138
9452
  }
9139
9453
  }
9140
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
+ `;
9141
9525
  export const UpdateMedicalContraindication = gql `
9142
9526
  mutation UpdateMedicalContraindication($medicalContraindication: MedicalContraindicationUpdateInput!) {
9143
9527
  updateMedicalContraindication(medicalContraindication: $medicalContraindication) {
@@ -9300,6 +9684,76 @@ export const QueryMedicalDevices = gql `
9300
9684
  }
9301
9685
  }
9302
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
+ `;
9303
9757
  export const UpdateMedicalDevice = gql `
9304
9758
  mutation UpdateMedicalDevice($medicalDevice: MedicalDeviceUpdateInput!) {
9305
9759
  updateMedicalDevice(medicalDevice: $medicalDevice) {
@@ -9462,6 +9916,76 @@ export const QueryMedicalDrugs = gql `
9462
9916
  }
9463
9917
  }
9464
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
+ `;
9465
9989
  export const UpdateMedicalDrug = gql `
9466
9990
  mutation UpdateMedicalDrug($medicalDrug: MedicalDrugUpdateInput!) {
9467
9991
  updateMedicalDrug(medicalDrug: $medicalDrug) {
@@ -9624,6 +10148,76 @@ export const QueryMedicalDrugClasses = gql `
9624
10148
  }
9625
10149
  }
9626
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
+ `;
9627
10221
  export const UpdateMedicalDrugClass = gql `
9628
10222
  mutation UpdateMedicalDrugClass($medicalDrugClass: MedicalDrugClassUpdateInput!) {
9629
10223
  updateMedicalDrugClass(medicalDrugClass: $medicalDrugClass) {
@@ -9729,9 +10323,70 @@ export const GetMedicalGuideline = gql `
9729
10323
  }
9730
10324
  }
9731
10325
  `;
9732
- export const QueryMedicalGuidelines = gql `
9733
- query QueryMedicalGuidelines($filter: MedicalGuidelineFilter, $correlationId: String) {
9734
- 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
+ ) {
9735
10390
  results {
9736
10391
  id
9737
10392
  name
@@ -9783,6 +10438,15 @@ export const QueryMedicalGuidelines = gql `
9783
10438
  h3r15
9784
10439
  }
9785
10440
  }
10441
+ clusters {
10442
+ clusters {
10443
+ entities {
10444
+ id
10445
+ name
10446
+ }
10447
+ similarity
10448
+ }
10449
+ }
9786
10450
  }
9787
10451
  }
9788
10452
  `;
@@ -9948,6 +10612,76 @@ export const QueryMedicalIndications = gql `
9948
10612
  }
9949
10613
  }
9950
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
+ `;
9951
10685
  export const UpdateMedicalIndication = gql `
9952
10686
  mutation UpdateMedicalIndication($medicalIndication: MedicalIndicationUpdateInput!) {
9953
10687
  updateMedicalIndication(medicalIndication: $medicalIndication) {
@@ -10110,6 +10844,76 @@ export const QueryMedicalProcedures = gql `
10110
10844
  }
10111
10845
  }
10112
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
+ `;
10113
10917
  export const UpdateMedicalProcedure = gql `
10114
10918
  mutation UpdateMedicalProcedure($medicalProcedure: MedicalProcedureUpdateInput!) {
10115
10919
  updateMedicalProcedure(medicalProcedure: $medicalProcedure) {
@@ -10286,6 +11090,83 @@ export const QueryMedicalStudies = gql `
10286
11090
  }
10287
11091
  }
10288
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
+ `;
10289
11170
  export const UpdateMedicalStudy = gql `
10290
11171
  mutation UpdateMedicalStudy($medicalStudy: MedicalStudyUpdateInput!) {
10291
11172
  updateMedicalStudy(medicalStudy: $medicalStudy) {
@@ -10391,9 +11272,70 @@ export const GetMedicalTest = gql `
10391
11272
  }
10392
11273
  }
10393
11274
  `;
10394
- export const QueryMedicalTests = gql `
10395
- query QueryMedicalTests($filter: MedicalTestFilter, $correlationId: String) {
10396
- 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
+ ) {
10397
11339
  results {
10398
11340
  id
10399
11341
  name
@@ -10445,6 +11387,15 @@ export const QueryMedicalTests = gql `
10445
11387
  h3r15
10446
11388
  }
10447
11389
  }
11390
+ clusters {
11391
+ clusters {
11392
+ entities {
11393
+ id
11394
+ name
11395
+ }
11396
+ similarity
11397
+ }
11398
+ }
10448
11399
  }
10449
11400
  }
10450
11401
  `;
@@ -10610,6 +11561,76 @@ export const QueryMedicalTherapies = gql `
10610
11561
  }
10611
11562
  }
10612
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
+ `;
10613
11634
  export const UpdateMedicalTherapy = gql `
10614
11635
  mutation UpdateMedicalTherapy($medicalTherapy: MedicalTherapyUpdateInput!) {
10615
11636
  updateMedicalTherapy(medicalTherapy: $medicalTherapy) {
@@ -10959,6 +11980,92 @@ export const QueryOrganizations = gql `
10959
11980
  }
10960
11981
  }
10961
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
+ `;
10962
12069
  export const QueryOrganizationsExpanded = gql `
10963
12070
  query QueryOrganizationsExpanded($filter: OrganizationFilter, $correlationId: String) {
10964
12071
  organizations(filter: $filter, correlationId: $correlationId) {
@@ -11304,6 +12411,87 @@ export const QueryPersons = gql `
11304
12411
  }
11305
12412
  }
11306
12413
  `;
12414
+ export const QueryPersonsClusters = gql `
12415
+ query QueryPersonsClusters($filter: PersonFilter, $clusters: EntityClustersInput, $correlationId: String) {
12416
+ persons(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
12417
+ results {
12418
+ id
12419
+ name
12420
+ creationDate
12421
+ modifiedDate
12422
+ relevance
12423
+ owner {
12424
+ id
12425
+ }
12426
+ state
12427
+ alternateNames
12428
+ uri
12429
+ description
12430
+ identifier
12431
+ thing
12432
+ feeds {
12433
+ id
12434
+ name
12435
+ }
12436
+ links {
12437
+ uri
12438
+ linkType
12439
+ excerpts
12440
+ }
12441
+ workflow {
12442
+ id
12443
+ name
12444
+ }
12445
+ location {
12446
+ latitude
12447
+ longitude
12448
+ }
12449
+ h3 {
12450
+ h3r0
12451
+ h3r1
12452
+ h3r2
12453
+ h3r3
12454
+ h3r4
12455
+ h3r5
12456
+ h3r6
12457
+ h3r7
12458
+ h3r8
12459
+ h3r9
12460
+ h3r10
12461
+ h3r11
12462
+ h3r12
12463
+ h3r13
12464
+ h3r14
12465
+ h3r15
12466
+ }
12467
+ address {
12468
+ streetAddress
12469
+ city
12470
+ region
12471
+ country
12472
+ postalCode
12473
+ }
12474
+ email
12475
+ givenName
12476
+ familyName
12477
+ phoneNumber
12478
+ birthDate
12479
+ title
12480
+ occupation
12481
+ education
12482
+ }
12483
+ clusters {
12484
+ clusters {
12485
+ entities {
12486
+ id
12487
+ name
12488
+ }
12489
+ similarity
12490
+ }
12491
+ }
12492
+ }
12493
+ }
12494
+ `;
11307
12495
  export const QueryPersonsExpanded = gql `
11308
12496
  query QueryPersonsExpanded($filter: PersonFilter, $correlationId: String) {
11309
12497
  persons(filter: $filter, correlationId: $correlationId) {
@@ -11529,15 +12717,82 @@ export const GetPlace = gql `
11529
12717
  country
11530
12718
  postalCode
11531
12719
  }
11532
- telephone
11533
- openingHours
11534
- priceRange
12720
+ telephone
12721
+ openingHours
12722
+ priceRange
12723
+ }
12724
+ }
12725
+ `;
12726
+ export const QueryPlaces = gql `
12727
+ query QueryPlaces($filter: PlaceFilter, $correlationId: String) {
12728
+ places(filter: $filter, correlationId: $correlationId) {
12729
+ results {
12730
+ id
12731
+ name
12732
+ creationDate
12733
+ modifiedDate
12734
+ relevance
12735
+ owner {
12736
+ id
12737
+ }
12738
+ state
12739
+ alternateNames
12740
+ uri
12741
+ description
12742
+ identifier
12743
+ thing
12744
+ feeds {
12745
+ id
12746
+ name
12747
+ }
12748
+ links {
12749
+ uri
12750
+ linkType
12751
+ excerpts
12752
+ }
12753
+ workflow {
12754
+ id
12755
+ name
12756
+ }
12757
+ location {
12758
+ latitude
12759
+ longitude
12760
+ }
12761
+ h3 {
12762
+ h3r0
12763
+ h3r1
12764
+ h3r2
12765
+ h3r3
12766
+ h3r4
12767
+ h3r5
12768
+ h3r6
12769
+ h3r7
12770
+ h3r8
12771
+ h3r9
12772
+ h3r10
12773
+ h3r11
12774
+ h3r12
12775
+ h3r13
12776
+ h3r14
12777
+ h3r15
12778
+ }
12779
+ address {
12780
+ streetAddress
12781
+ city
12782
+ region
12783
+ country
12784
+ postalCode
12785
+ }
12786
+ telephone
12787
+ openingHours
12788
+ priceRange
12789
+ }
11535
12790
  }
11536
12791
  }
11537
12792
  `;
11538
- export const QueryPlaces = gql `
11539
- query QueryPlaces($filter: PlaceFilter, $correlationId: String) {
11540
- places(filter: $filter, correlationId: $correlationId) {
12793
+ export const QueryPlacesClusters = gql `
12794
+ query QueryPlacesClusters($filter: PlaceFilter, $clusters: EntityClustersInput, $correlationId: String) {
12795
+ places(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
11541
12796
  results {
11542
12797
  id
11543
12798
  name
@@ -11599,6 +12854,15 @@ export const QueryPlaces = gql `
11599
12854
  openingHours
11600
12855
  priceRange
11601
12856
  }
12857
+ clusters {
12858
+ clusters {
12859
+ entities {
12860
+ id
12861
+ name
12862
+ }
12863
+ similarity
12864
+ }
12865
+ }
11602
12866
  }
11603
12867
  }
11604
12868
  `;
@@ -11808,6 +13072,88 @@ export const QueryProducts = gql `
11808
13072
  }
11809
13073
  }
11810
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
+ `;
11811
13157
  export const UpdateProduct = gql `
11812
13158
  mutation UpdateProduct($product: ProductUpdateInput!) {
11813
13159
  updateProduct(product: $product) {
@@ -12174,6 +13520,72 @@ export const QueryRepos = gql `
12174
13520
  }
12175
13521
  }
12176
13522
  `;
13523
+ export const QueryReposClusters = gql `
13524
+ query QueryReposClusters($filter: RepoFilter, $clusters: EntityClustersInput, $correlationId: String) {
13525
+ repos(filter: $filter, clusters: $clusters, correlationId: $correlationId) {
13526
+ results {
13527
+ id
13528
+ name
13529
+ creationDate
13530
+ modifiedDate
13531
+ relevance
13532
+ owner {
13533
+ id
13534
+ }
13535
+ state
13536
+ alternateNames
13537
+ uri
13538
+ description
13539
+ identifier
13540
+ thing
13541
+ feeds {
13542
+ id
13543
+ name
13544
+ }
13545
+ links {
13546
+ uri
13547
+ linkType
13548
+ excerpts
13549
+ }
13550
+ workflow {
13551
+ id
13552
+ name
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
+ }
13585
+ }
13586
+ }
13587
+ }
13588
+ `;
12177
13589
  export const UpdateRepo = gql `
12178
13590
  mutation UpdateRepo($repo: RepoUpdateInput!) {
12179
13591
  updateRepo(repo: $repo) {
@@ -12369,6 +13781,74 @@ export const QuerySoftwares = gql `
12369
13781
  }
12370
13782
  }
12371
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
13797
+ alternateNames
13798
+ uri
13799
+ description
13800
+ identifier
13801
+ thing
13802
+ feeds {
13803
+ id
13804
+ name
13805
+ }
13806
+ links {
13807
+ uri
13808
+ linkType
13809
+ excerpts
13810
+ }
13811
+ workflow {
13812
+ id
13813
+ name
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
+ }
13848
+ }
13849
+ }
13850
+ }
13851
+ `;
12372
13852
  export const UpdateSoftware = gql `
12373
13853
  mutation UpdateSoftware($software: SoftwareUpdateInput!) {
12374
13854
  updateSoftware(software: $software) {