graphlit-client 1.0.20251122001 → 1.0.20251123002

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.
@@ -66,6 +66,7 @@ export const GetAlert = gql `
66
66
  id
67
67
  name
68
68
  creationDate
69
+ modifiedDate
69
70
  owner {
70
71
  id
71
72
  }
@@ -246,6 +247,7 @@ export const QueryAlerts = gql `
246
247
  id
247
248
  name
248
249
  creationDate
250
+ modifiedDate
249
251
  relevance
250
252
  owner {
251
253
  id
@@ -596,6 +598,7 @@ export const GetCollection = gql `
596
598
  id
597
599
  name
598
600
  creationDate
601
+ modifiedDate
599
602
  owner {
600
603
  id
601
604
  }
@@ -615,6 +618,7 @@ export const QueryCollections = gql `
615
618
  id
616
619
  name
617
620
  creationDate
621
+ modifiedDate
618
622
  relevance
619
623
  owner {
620
624
  id
@@ -680,6 +684,7 @@ export const GetConnector = gql `
680
684
  id
681
685
  name
682
686
  creationDate
687
+ modifiedDate
683
688
  owner {
684
689
  id
685
690
  }
@@ -740,6 +745,7 @@ export const QueryConnectors = gql `
740
745
  id
741
746
  name
742
747
  creationDate
748
+ modifiedDate
743
749
  relevance
744
750
  owner {
745
751
  id
@@ -1178,6 +1184,7 @@ export const GetContent = gql `
1178
1184
  id
1179
1185
  name
1180
1186
  creationDate
1187
+ modifiedDate
1181
1188
  owner {
1182
1189
  id
1183
1190
  }
@@ -1531,6 +1538,7 @@ export const GetContent = gql `
1531
1538
  links {
1532
1539
  uri
1533
1540
  linkType
1541
+ excerpts
1534
1542
  }
1535
1543
  observations {
1536
1544
  id
@@ -2007,6 +2015,7 @@ export const LookupContents = gql `
2007
2015
  id
2008
2016
  name
2009
2017
  creationDate
2018
+ modifiedDate
2010
2019
  owner {
2011
2020
  id
2012
2021
  }
@@ -2360,6 +2369,7 @@ export const LookupContents = gql `
2360
2369
  links {
2361
2370
  uri
2362
2371
  linkType
2372
+ excerpts
2363
2373
  }
2364
2374
  observations {
2365
2375
  id
@@ -2706,6 +2716,7 @@ export const QueryContents = gql `
2706
2716
  id
2707
2717
  name
2708
2718
  creationDate
2719
+ modifiedDate
2709
2720
  relevance
2710
2721
  owner {
2711
2722
  id
@@ -3107,6 +3118,7 @@ export const QueryContentsObservations = gql `
3107
3118
  id
3108
3119
  name
3109
3120
  creationDate
3121
+ modifiedDate
3110
3122
  relevance
3111
3123
  owner {
3112
3124
  id
@@ -4904,6 +4916,7 @@ export const GetConversation = gql `
4904
4916
  id
4905
4917
  name
4906
4918
  creationDate
4919
+ modifiedDate
4907
4920
  owner {
4908
4921
  id
4909
4922
  }
@@ -5857,6 +5870,7 @@ export const QueryConversations = gql `
5857
5870
  id
5858
5871
  name
5859
5872
  creationDate
5873
+ modifiedDate
5860
5874
  relevance
5861
5875
  owner {
5862
5876
  id
@@ -6905,6 +6919,7 @@ export const GetEvent = gql `
6905
6919
  id
6906
6920
  name
6907
6921
  creationDate
6922
+ modifiedDate
6908
6923
  owner {
6909
6924
  id
6910
6925
  }
@@ -6918,6 +6933,15 @@ export const GetEvent = gql `
6918
6933
  id
6919
6934
  name
6920
6935
  }
6936
+ links {
6937
+ uri
6938
+ linkType
6939
+ excerpts
6940
+ }
6941
+ workflow {
6942
+ id
6943
+ name
6944
+ }
6921
6945
  address {
6922
6946
  streetAddress
6923
6947
  city
@@ -6935,6 +6959,10 @@ export const GetEvent = gql `
6935
6959
  priceCurrency
6936
6960
  isAccessibleForFree
6937
6961
  typicalAgeRange
6962
+ organizer
6963
+ performer
6964
+ sponsor
6965
+ eventStatus
6938
6966
  }
6939
6967
  }
6940
6968
  `;
@@ -6945,6 +6973,7 @@ export const QueryEvents = gql `
6945
6973
  id
6946
6974
  name
6947
6975
  creationDate
6976
+ modifiedDate
6948
6977
  relevance
6949
6978
  owner {
6950
6979
  id
@@ -6959,6 +6988,15 @@ export const QueryEvents = gql `
6959
6988
  id
6960
6989
  name
6961
6990
  }
6991
+ links {
6992
+ uri
6993
+ linkType
6994
+ excerpts
6995
+ }
6996
+ workflow {
6997
+ id
6998
+ name
6999
+ }
6962
7000
  address {
6963
7001
  streetAddress
6964
7002
  city
@@ -6976,6 +7014,10 @@ export const QueryEvents = gql `
6976
7014
  priceCurrency
6977
7015
  isAccessibleForFree
6978
7016
  typicalAgeRange
7017
+ organizer
7018
+ performer
7019
+ sponsor
7020
+ eventStatus
6979
7021
  }
6980
7022
  }
6981
7023
  }
@@ -7063,6 +7105,7 @@ export const GetFeed = gql `
7063
7105
  id
7064
7106
  name
7065
7107
  creationDate
7108
+ modifiedDate
7066
7109
  owner {
7067
7110
  id
7068
7111
  }
@@ -7478,6 +7521,7 @@ export const QueryFeeds = gql `
7478
7521
  id
7479
7522
  name
7480
7523
  creationDate
7524
+ modifiedDate
7481
7525
  relevance
7482
7526
  owner {
7483
7527
  id
@@ -8043,6 +8087,7 @@ export const GetInvestment = gql `
8043
8087
  id
8044
8088
  name
8045
8089
  creationDate
8090
+ modifiedDate
8046
8091
  owner {
8047
8092
  id
8048
8093
  }
@@ -8056,6 +8101,15 @@ export const GetInvestment = gql `
8056
8101
  id
8057
8102
  name
8058
8103
  }
8104
+ links {
8105
+ uri
8106
+ linkType
8107
+ excerpts
8108
+ }
8109
+ workflow {
8110
+ id
8111
+ name
8112
+ }
8059
8113
  }
8060
8114
  }
8061
8115
  `;
@@ -8066,6 +8120,7 @@ export const QueryInvestments = gql `
8066
8120
  id
8067
8121
  name
8068
8122
  creationDate
8123
+ modifiedDate
8069
8124
  relevance
8070
8125
  owner {
8071
8126
  id
@@ -8080,6 +8135,15 @@ export const QueryInvestments = gql `
8080
8135
  id
8081
8136
  name
8082
8137
  }
8138
+ links {
8139
+ uri
8140
+ linkType
8141
+ excerpts
8142
+ }
8143
+ workflow {
8144
+ id
8145
+ name
8146
+ }
8083
8147
  }
8084
8148
  }
8085
8149
  }
@@ -8141,6 +8205,7 @@ export const GetInvestmentFund = gql `
8141
8205
  id
8142
8206
  name
8143
8207
  creationDate
8208
+ modifiedDate
8144
8209
  owner {
8145
8210
  id
8146
8211
  }
@@ -8154,6 +8219,15 @@ export const GetInvestmentFund = gql `
8154
8219
  id
8155
8220
  name
8156
8221
  }
8222
+ links {
8223
+ uri
8224
+ linkType
8225
+ excerpts
8226
+ }
8227
+ workflow {
8228
+ id
8229
+ name
8230
+ }
8157
8231
  }
8158
8232
  }
8159
8233
  `;
@@ -8164,6 +8238,7 @@ export const QueryInvestmentFunds = gql `
8164
8238
  id
8165
8239
  name
8166
8240
  creationDate
8241
+ modifiedDate
8167
8242
  relevance
8168
8243
  owner {
8169
8244
  id
@@ -8178,6 +8253,15 @@ export const QueryInvestmentFunds = gql `
8178
8253
  id
8179
8254
  name
8180
8255
  }
8256
+ links {
8257
+ uri
8258
+ linkType
8259
+ excerpts
8260
+ }
8261
+ workflow {
8262
+ id
8263
+ name
8264
+ }
8181
8265
  }
8182
8266
  }
8183
8267
  }
@@ -8329,6 +8413,7 @@ export const GetMedicalCondition = gql `
8329
8413
  id
8330
8414
  name
8331
8415
  creationDate
8416
+ modifiedDate
8332
8417
  owner {
8333
8418
  id
8334
8419
  }
@@ -8342,6 +8427,15 @@ export const GetMedicalCondition = gql `
8342
8427
  id
8343
8428
  name
8344
8429
  }
8430
+ links {
8431
+ uri
8432
+ linkType
8433
+ excerpts
8434
+ }
8435
+ workflow {
8436
+ id
8437
+ name
8438
+ }
8345
8439
  }
8346
8440
  }
8347
8441
  `;
@@ -8352,6 +8446,7 @@ export const QueryMedicalConditions = gql `
8352
8446
  id
8353
8447
  name
8354
8448
  creationDate
8449
+ modifiedDate
8355
8450
  relevance
8356
8451
  owner {
8357
8452
  id
@@ -8366,6 +8461,15 @@ export const QueryMedicalConditions = gql `
8366
8461
  id
8367
8462
  name
8368
8463
  }
8464
+ links {
8465
+ uri
8466
+ linkType
8467
+ excerpts
8468
+ }
8469
+ workflow {
8470
+ id
8471
+ name
8472
+ }
8369
8473
  }
8370
8474
  }
8371
8475
  }
@@ -8427,6 +8531,7 @@ export const GetMedicalContraindication = gql `
8427
8531
  id
8428
8532
  name
8429
8533
  creationDate
8534
+ modifiedDate
8430
8535
  owner {
8431
8536
  id
8432
8537
  }
@@ -8440,6 +8545,15 @@ export const GetMedicalContraindication = gql `
8440
8545
  id
8441
8546
  name
8442
8547
  }
8548
+ links {
8549
+ uri
8550
+ linkType
8551
+ excerpts
8552
+ }
8553
+ workflow {
8554
+ id
8555
+ name
8556
+ }
8443
8557
  }
8444
8558
  }
8445
8559
  `;
@@ -8450,6 +8564,7 @@ export const QueryMedicalContraindications = gql `
8450
8564
  id
8451
8565
  name
8452
8566
  creationDate
8567
+ modifiedDate
8453
8568
  relevance
8454
8569
  owner {
8455
8570
  id
@@ -8464,6 +8579,15 @@ export const QueryMedicalContraindications = gql `
8464
8579
  id
8465
8580
  name
8466
8581
  }
8582
+ links {
8583
+ uri
8584
+ linkType
8585
+ excerpts
8586
+ }
8587
+ workflow {
8588
+ id
8589
+ name
8590
+ }
8467
8591
  }
8468
8592
  }
8469
8593
  }
@@ -8525,6 +8649,7 @@ export const GetMedicalDevice = gql `
8525
8649
  id
8526
8650
  name
8527
8651
  creationDate
8652
+ modifiedDate
8528
8653
  owner {
8529
8654
  id
8530
8655
  }
@@ -8538,6 +8663,15 @@ export const GetMedicalDevice = gql `
8538
8663
  id
8539
8664
  name
8540
8665
  }
8666
+ links {
8667
+ uri
8668
+ linkType
8669
+ excerpts
8670
+ }
8671
+ workflow {
8672
+ id
8673
+ name
8674
+ }
8541
8675
  }
8542
8676
  }
8543
8677
  `;
@@ -8548,6 +8682,7 @@ export const QueryMedicalDevices = gql `
8548
8682
  id
8549
8683
  name
8550
8684
  creationDate
8685
+ modifiedDate
8551
8686
  relevance
8552
8687
  owner {
8553
8688
  id
@@ -8562,6 +8697,15 @@ export const QueryMedicalDevices = gql `
8562
8697
  id
8563
8698
  name
8564
8699
  }
8700
+ links {
8701
+ uri
8702
+ linkType
8703
+ excerpts
8704
+ }
8705
+ workflow {
8706
+ id
8707
+ name
8708
+ }
8565
8709
  }
8566
8710
  }
8567
8711
  }
@@ -8623,6 +8767,7 @@ export const GetMedicalDrug = gql `
8623
8767
  id
8624
8768
  name
8625
8769
  creationDate
8770
+ modifiedDate
8626
8771
  owner {
8627
8772
  id
8628
8773
  }
@@ -8636,6 +8781,15 @@ export const GetMedicalDrug = gql `
8636
8781
  id
8637
8782
  name
8638
8783
  }
8784
+ links {
8785
+ uri
8786
+ linkType
8787
+ excerpts
8788
+ }
8789
+ workflow {
8790
+ id
8791
+ name
8792
+ }
8639
8793
  }
8640
8794
  }
8641
8795
  `;
@@ -8646,6 +8800,7 @@ export const QueryMedicalDrugs = gql `
8646
8800
  id
8647
8801
  name
8648
8802
  creationDate
8803
+ modifiedDate
8649
8804
  relevance
8650
8805
  owner {
8651
8806
  id
@@ -8660,6 +8815,15 @@ export const QueryMedicalDrugs = gql `
8660
8815
  id
8661
8816
  name
8662
8817
  }
8818
+ links {
8819
+ uri
8820
+ linkType
8821
+ excerpts
8822
+ }
8823
+ workflow {
8824
+ id
8825
+ name
8826
+ }
8663
8827
  }
8664
8828
  }
8665
8829
  }
@@ -8721,6 +8885,7 @@ export const GetMedicalDrugClass = gql `
8721
8885
  id
8722
8886
  name
8723
8887
  creationDate
8888
+ modifiedDate
8724
8889
  owner {
8725
8890
  id
8726
8891
  }
@@ -8734,6 +8899,15 @@ export const GetMedicalDrugClass = gql `
8734
8899
  id
8735
8900
  name
8736
8901
  }
8902
+ links {
8903
+ uri
8904
+ linkType
8905
+ excerpts
8906
+ }
8907
+ workflow {
8908
+ id
8909
+ name
8910
+ }
8737
8911
  }
8738
8912
  }
8739
8913
  `;
@@ -8744,6 +8918,7 @@ export const QueryMedicalDrugClasses = gql `
8744
8918
  id
8745
8919
  name
8746
8920
  creationDate
8921
+ modifiedDate
8747
8922
  relevance
8748
8923
  owner {
8749
8924
  id
@@ -8758,6 +8933,15 @@ export const QueryMedicalDrugClasses = gql `
8758
8933
  id
8759
8934
  name
8760
8935
  }
8936
+ links {
8937
+ uri
8938
+ linkType
8939
+ excerpts
8940
+ }
8941
+ workflow {
8942
+ id
8943
+ name
8944
+ }
8761
8945
  }
8762
8946
  }
8763
8947
  }
@@ -8819,6 +9003,7 @@ export const GetMedicalGuideline = gql `
8819
9003
  id
8820
9004
  name
8821
9005
  creationDate
9006
+ modifiedDate
8822
9007
  owner {
8823
9008
  id
8824
9009
  }
@@ -8832,6 +9017,15 @@ export const GetMedicalGuideline = gql `
8832
9017
  id
8833
9018
  name
8834
9019
  }
9020
+ links {
9021
+ uri
9022
+ linkType
9023
+ excerpts
9024
+ }
9025
+ workflow {
9026
+ id
9027
+ name
9028
+ }
8835
9029
  }
8836
9030
  }
8837
9031
  `;
@@ -8842,6 +9036,7 @@ export const QueryMedicalGuidelines = gql `
8842
9036
  id
8843
9037
  name
8844
9038
  creationDate
9039
+ modifiedDate
8845
9040
  relevance
8846
9041
  owner {
8847
9042
  id
@@ -8856,6 +9051,15 @@ export const QueryMedicalGuidelines = gql `
8856
9051
  id
8857
9052
  name
8858
9053
  }
9054
+ links {
9055
+ uri
9056
+ linkType
9057
+ excerpts
9058
+ }
9059
+ workflow {
9060
+ id
9061
+ name
9062
+ }
8859
9063
  }
8860
9064
  }
8861
9065
  }
@@ -8917,6 +9121,7 @@ export const GetMedicalIndication = gql `
8917
9121
  id
8918
9122
  name
8919
9123
  creationDate
9124
+ modifiedDate
8920
9125
  owner {
8921
9126
  id
8922
9127
  }
@@ -8930,6 +9135,15 @@ export const GetMedicalIndication = gql `
8930
9135
  id
8931
9136
  name
8932
9137
  }
9138
+ links {
9139
+ uri
9140
+ linkType
9141
+ excerpts
9142
+ }
9143
+ workflow {
9144
+ id
9145
+ name
9146
+ }
8933
9147
  }
8934
9148
  }
8935
9149
  `;
@@ -8940,6 +9154,7 @@ export const QueryMedicalIndications = gql `
8940
9154
  id
8941
9155
  name
8942
9156
  creationDate
9157
+ modifiedDate
8943
9158
  relevance
8944
9159
  owner {
8945
9160
  id
@@ -8954,6 +9169,15 @@ export const QueryMedicalIndications = gql `
8954
9169
  id
8955
9170
  name
8956
9171
  }
9172
+ links {
9173
+ uri
9174
+ linkType
9175
+ excerpts
9176
+ }
9177
+ workflow {
9178
+ id
9179
+ name
9180
+ }
8957
9181
  }
8958
9182
  }
8959
9183
  }
@@ -9015,6 +9239,7 @@ export const GetMedicalProcedure = gql `
9015
9239
  id
9016
9240
  name
9017
9241
  creationDate
9242
+ modifiedDate
9018
9243
  owner {
9019
9244
  id
9020
9245
  }
@@ -9028,6 +9253,15 @@ export const GetMedicalProcedure = gql `
9028
9253
  id
9029
9254
  name
9030
9255
  }
9256
+ links {
9257
+ uri
9258
+ linkType
9259
+ excerpts
9260
+ }
9261
+ workflow {
9262
+ id
9263
+ name
9264
+ }
9031
9265
  }
9032
9266
  }
9033
9267
  `;
@@ -9038,6 +9272,7 @@ export const QueryMedicalProcedures = gql `
9038
9272
  id
9039
9273
  name
9040
9274
  creationDate
9275
+ modifiedDate
9041
9276
  relevance
9042
9277
  owner {
9043
9278
  id
@@ -9052,6 +9287,15 @@ export const QueryMedicalProcedures = gql `
9052
9287
  id
9053
9288
  name
9054
9289
  }
9290
+ links {
9291
+ uri
9292
+ linkType
9293
+ excerpts
9294
+ }
9295
+ workflow {
9296
+ id
9297
+ name
9298
+ }
9055
9299
  }
9056
9300
  }
9057
9301
  }
@@ -9113,6 +9357,7 @@ export const GetMedicalStudy = gql `
9113
9357
  id
9114
9358
  name
9115
9359
  creationDate
9360
+ modifiedDate
9116
9361
  owner {
9117
9362
  id
9118
9363
  }
@@ -9126,6 +9371,15 @@ export const GetMedicalStudy = gql `
9126
9371
  id
9127
9372
  name
9128
9373
  }
9374
+ links {
9375
+ uri
9376
+ linkType
9377
+ excerpts
9378
+ }
9379
+ workflow {
9380
+ id
9381
+ name
9382
+ }
9129
9383
  address {
9130
9384
  streetAddress
9131
9385
  city
@@ -9143,6 +9397,7 @@ export const QueryMedicalStudies = gql `
9143
9397
  id
9144
9398
  name
9145
9399
  creationDate
9400
+ modifiedDate
9146
9401
  relevance
9147
9402
  owner {
9148
9403
  id
@@ -9157,6 +9412,15 @@ export const QueryMedicalStudies = gql `
9157
9412
  id
9158
9413
  name
9159
9414
  }
9415
+ links {
9416
+ uri
9417
+ linkType
9418
+ excerpts
9419
+ }
9420
+ workflow {
9421
+ id
9422
+ name
9423
+ }
9160
9424
  address {
9161
9425
  streetAddress
9162
9426
  city
@@ -9225,6 +9489,7 @@ export const GetMedicalTest = gql `
9225
9489
  id
9226
9490
  name
9227
9491
  creationDate
9492
+ modifiedDate
9228
9493
  owner {
9229
9494
  id
9230
9495
  }
@@ -9238,6 +9503,15 @@ export const GetMedicalTest = gql `
9238
9503
  id
9239
9504
  name
9240
9505
  }
9506
+ links {
9507
+ uri
9508
+ linkType
9509
+ excerpts
9510
+ }
9511
+ workflow {
9512
+ id
9513
+ name
9514
+ }
9241
9515
  }
9242
9516
  }
9243
9517
  `;
@@ -9248,6 +9522,7 @@ export const QueryMedicalTests = gql `
9248
9522
  id
9249
9523
  name
9250
9524
  creationDate
9525
+ modifiedDate
9251
9526
  relevance
9252
9527
  owner {
9253
9528
  id
@@ -9262,6 +9537,15 @@ export const QueryMedicalTests = gql `
9262
9537
  id
9263
9538
  name
9264
9539
  }
9540
+ links {
9541
+ uri
9542
+ linkType
9543
+ excerpts
9544
+ }
9545
+ workflow {
9546
+ id
9547
+ name
9548
+ }
9265
9549
  }
9266
9550
  }
9267
9551
  }
@@ -9323,6 +9607,7 @@ export const GetMedicalTherapy = gql `
9323
9607
  id
9324
9608
  name
9325
9609
  creationDate
9610
+ modifiedDate
9326
9611
  owner {
9327
9612
  id
9328
9613
  }
@@ -9336,6 +9621,15 @@ export const GetMedicalTherapy = gql `
9336
9621
  id
9337
9622
  name
9338
9623
  }
9624
+ links {
9625
+ uri
9626
+ linkType
9627
+ excerpts
9628
+ }
9629
+ workflow {
9630
+ id
9631
+ name
9632
+ }
9339
9633
  }
9340
9634
  }
9341
9635
  `;
@@ -9346,6 +9640,7 @@ export const QueryMedicalTherapies = gql `
9346
9640
  id
9347
9641
  name
9348
9642
  creationDate
9643
+ modifiedDate
9349
9644
  relevance
9350
9645
  owner {
9351
9646
  id
@@ -9360,6 +9655,15 @@ export const QueryMedicalTherapies = gql `
9360
9655
  id
9361
9656
  name
9362
9657
  }
9658
+ links {
9659
+ uri
9660
+ linkType
9661
+ excerpts
9662
+ }
9663
+ workflow {
9664
+ id
9665
+ name
9666
+ }
9363
9667
  }
9364
9668
  }
9365
9669
  }
@@ -9464,6 +9768,7 @@ export const GetOrganization = gql `
9464
9768
  id
9465
9769
  name
9466
9770
  creationDate
9771
+ modifiedDate
9467
9772
  owner {
9468
9773
  id
9469
9774
  }
@@ -9477,6 +9782,15 @@ export const GetOrganization = gql `
9477
9782
  id
9478
9783
  name
9479
9784
  }
9785
+ links {
9786
+ uri
9787
+ linkType
9788
+ excerpts
9789
+ }
9790
+ workflow {
9791
+ id
9792
+ name
9793
+ }
9480
9794
  address {
9481
9795
  streetAddress
9482
9796
  city
@@ -9485,6 +9799,9 @@ export const GetOrganization = gql `
9485
9799
  postalCode
9486
9800
  }
9487
9801
  foundingDate
9802
+ email
9803
+ telephone
9804
+ legalName
9488
9805
  industries
9489
9806
  revenue
9490
9807
  revenueCurrency
@@ -9500,6 +9817,7 @@ export const QueryOrganizations = gql `
9500
9817
  id
9501
9818
  name
9502
9819
  creationDate
9820
+ modifiedDate
9503
9821
  relevance
9504
9822
  owner {
9505
9823
  id
@@ -9514,6 +9832,15 @@ export const QueryOrganizations = gql `
9514
9832
  id
9515
9833
  name
9516
9834
  }
9835
+ links {
9836
+ uri
9837
+ linkType
9838
+ excerpts
9839
+ }
9840
+ workflow {
9841
+ id
9842
+ name
9843
+ }
9517
9844
  address {
9518
9845
  streetAddress
9519
9846
  city
@@ -9522,6 +9849,9 @@ export const QueryOrganizations = gql `
9522
9849
  postalCode
9523
9850
  }
9524
9851
  foundingDate
9852
+ email
9853
+ telephone
9854
+ legalName
9525
9855
  industries
9526
9856
  revenue
9527
9857
  revenueCurrency
@@ -9600,6 +9930,7 @@ export const GetPerson = gql `
9600
9930
  id
9601
9931
  name
9602
9932
  creationDate
9933
+ modifiedDate
9603
9934
  owner {
9604
9935
  id
9605
9936
  }
@@ -9613,6 +9944,15 @@ export const GetPerson = gql `
9613
9944
  id
9614
9945
  name
9615
9946
  }
9947
+ links {
9948
+ uri
9949
+ linkType
9950
+ excerpts
9951
+ }
9952
+ workflow {
9953
+ id
9954
+ name
9955
+ }
9616
9956
  address {
9617
9957
  streetAddress
9618
9958
  city
@@ -9638,6 +9978,7 @@ export const QueryPersons = gql `
9638
9978
  id
9639
9979
  name
9640
9980
  creationDate
9981
+ modifiedDate
9641
9982
  relevance
9642
9983
  owner {
9643
9984
  id
@@ -9652,6 +9993,15 @@ export const QueryPersons = gql `
9652
9993
  id
9653
9994
  name
9654
9995
  }
9996
+ links {
9997
+ uri
9998
+ linkType
9999
+ excerpts
10000
+ }
10001
+ workflow {
10002
+ id
10003
+ name
10004
+ }
9655
10005
  address {
9656
10006
  streetAddress
9657
10007
  city
@@ -9740,6 +10090,7 @@ export const GetPlace = gql `
9740
10090
  id
9741
10091
  name
9742
10092
  creationDate
10093
+ modifiedDate
9743
10094
  owner {
9744
10095
  id
9745
10096
  }
@@ -9753,6 +10104,15 @@ export const GetPlace = gql `
9753
10104
  id
9754
10105
  name
9755
10106
  }
10107
+ links {
10108
+ uri
10109
+ linkType
10110
+ excerpts
10111
+ }
10112
+ workflow {
10113
+ id
10114
+ name
10115
+ }
9756
10116
  address {
9757
10117
  streetAddress
9758
10118
  city
@@ -9760,6 +10120,9 @@ export const GetPlace = gql `
9760
10120
  country
9761
10121
  postalCode
9762
10122
  }
10123
+ telephone
10124
+ openingHours
10125
+ priceRange
9763
10126
  }
9764
10127
  }
9765
10128
  `;
@@ -9770,6 +10133,7 @@ export const QueryPlaces = gql `
9770
10133
  id
9771
10134
  name
9772
10135
  creationDate
10136
+ modifiedDate
9773
10137
  relevance
9774
10138
  owner {
9775
10139
  id
@@ -9784,6 +10148,15 @@ export const QueryPlaces = gql `
9784
10148
  id
9785
10149
  name
9786
10150
  }
10151
+ links {
10152
+ uri
10153
+ linkType
10154
+ excerpts
10155
+ }
10156
+ workflow {
10157
+ id
10158
+ name
10159
+ }
9787
10160
  address {
9788
10161
  streetAddress
9789
10162
  city
@@ -9791,6 +10164,9 @@ export const QueryPlaces = gql `
9791
10164
  country
9792
10165
  postalCode
9793
10166
  }
10167
+ telephone
10168
+ openingHours
10169
+ priceRange
9794
10170
  }
9795
10171
  }
9796
10172
  }
@@ -9864,6 +10240,7 @@ export const GetProduct = gql `
9864
10240
  id
9865
10241
  name
9866
10242
  creationDate
10243
+ modifiedDate
9867
10244
  owner {
9868
10245
  id
9869
10246
  }
@@ -9877,6 +10254,15 @@ export const GetProduct = gql `
9877
10254
  id
9878
10255
  name
9879
10256
  }
10257
+ links {
10258
+ uri
10259
+ linkType
10260
+ excerpts
10261
+ }
10262
+ workflow {
10263
+ id
10264
+ name
10265
+ }
9880
10266
  address {
9881
10267
  streetAddress
9882
10268
  city
@@ -9889,6 +10275,8 @@ export const GetProduct = gql `
9889
10275
  brand
9890
10276
  upc
9891
10277
  sku
10278
+ gtin
10279
+ mpn
9892
10280
  releaseDate
9893
10281
  productionDate
9894
10282
  }
@@ -9901,6 +10289,7 @@ export const QueryProducts = gql `
9901
10289
  id
9902
10290
  name
9903
10291
  creationDate
10292
+ modifiedDate
9904
10293
  relevance
9905
10294
  owner {
9906
10295
  id
@@ -9915,6 +10304,15 @@ export const QueryProducts = gql `
9915
10304
  id
9916
10305
  name
9917
10306
  }
10307
+ links {
10308
+ uri
10309
+ linkType
10310
+ excerpts
10311
+ }
10312
+ workflow {
10313
+ id
10314
+ name
10315
+ }
9918
10316
  address {
9919
10317
  streetAddress
9920
10318
  city
@@ -9927,6 +10325,8 @@ export const QueryProducts = gql `
9927
10325
  brand
9928
10326
  upc
9929
10327
  sku
10328
+ gtin
10329
+ mpn
9930
10330
  releaseDate
9931
10331
  productionDate
9932
10332
  }
@@ -10194,6 +10594,7 @@ export const GetRepo = gql `
10194
10594
  id
10195
10595
  name
10196
10596
  creationDate
10597
+ modifiedDate
10197
10598
  owner {
10198
10599
  id
10199
10600
  }
@@ -10207,6 +10608,15 @@ export const GetRepo = gql `
10207
10608
  id
10208
10609
  name
10209
10610
  }
10611
+ links {
10612
+ uri
10613
+ linkType
10614
+ excerpts
10615
+ }
10616
+ workflow {
10617
+ id
10618
+ name
10619
+ }
10210
10620
  }
10211
10621
  }
10212
10622
  `;
@@ -10217,6 +10627,7 @@ export const QueryRepos = gql `
10217
10627
  id
10218
10628
  name
10219
10629
  creationDate
10630
+ modifiedDate
10220
10631
  relevance
10221
10632
  owner {
10222
10633
  id
@@ -10231,6 +10642,15 @@ export const QueryRepos = gql `
10231
10642
  id
10232
10643
  name
10233
10644
  }
10645
+ links {
10646
+ uri
10647
+ linkType
10648
+ excerpts
10649
+ }
10650
+ workflow {
10651
+ id
10652
+ name
10653
+ }
10234
10654
  }
10235
10655
  }
10236
10656
  }
@@ -10321,6 +10741,7 @@ export const GetSoftware = gql `
10321
10741
  id
10322
10742
  name
10323
10743
  creationDate
10744
+ modifiedDate
10324
10745
  owner {
10325
10746
  id
10326
10747
  }
@@ -10334,6 +10755,15 @@ export const GetSoftware = gql `
10334
10755
  id
10335
10756
  name
10336
10757
  }
10758
+ links {
10759
+ uri
10760
+ linkType
10761
+ excerpts
10762
+ }
10763
+ workflow {
10764
+ id
10765
+ name
10766
+ }
10337
10767
  releaseDate
10338
10768
  developer
10339
10769
  }
@@ -10346,6 +10776,7 @@ export const QuerySoftwares = gql `
10346
10776
  id
10347
10777
  name
10348
10778
  creationDate
10779
+ modifiedDate
10349
10780
  relevance
10350
10781
  owner {
10351
10782
  id
@@ -10360,6 +10791,15 @@ export const QuerySoftwares = gql `
10360
10791
  id
10361
10792
  name
10362
10793
  }
10794
+ links {
10795
+ uri
10796
+ linkType
10797
+ excerpts
10798
+ }
10799
+ workflow {
10800
+ id
10801
+ name
10802
+ }
10363
10803
  releaseDate
10364
10804
  developer
10365
10805
  }
@@ -10426,6 +10866,7 @@ export const GetSpecification = gql `
10426
10866
  id
10427
10867
  name
10428
10868
  creationDate
10869
+ modifiedDate
10429
10870
  owner {
10430
10871
  id
10431
10872
  }
@@ -10802,6 +11243,7 @@ export const QuerySpecifications = gql `
10802
11243
  id
10803
11244
  name
10804
11245
  creationDate
11246
+ modifiedDate
10805
11247
  relevance
10806
11248
  owner {
10807
11249
  id
@@ -11076,6 +11518,7 @@ export const GetUser = gql `
11076
11518
  id
11077
11519
  name
11078
11520
  creationDate
11521
+ modifiedDate
11079
11522
  relevance
11080
11523
  owner {
11081
11524
  id
@@ -11144,6 +11587,7 @@ export const GetUserByIdentifier = gql `
11144
11587
  id
11145
11588
  name
11146
11589
  creationDate
11590
+ modifiedDate
11147
11591
  relevance
11148
11592
  owner {
11149
11593
  id
@@ -11213,6 +11657,7 @@ export const QueryUsers = gql `
11213
11657
  id
11214
11658
  name
11215
11659
  creationDate
11660
+ modifiedDate
11216
11661
  relevance
11217
11662
  owner {
11218
11663
  id
@@ -11521,6 +11966,7 @@ export const GetView = gql `
11521
11966
  id
11522
11967
  name
11523
11968
  creationDate
11969
+ modifiedDate
11524
11970
  owner {
11525
11971
  id
11526
11972
  }
@@ -11718,6 +12164,7 @@ export const QueryViews = gql `
11718
12164
  id
11719
12165
  name
11720
12166
  creationDate
12167
+ modifiedDate
11721
12168
  relevance
11722
12169
  owner {
11723
12170
  id
@@ -12573,6 +13020,7 @@ export const GetWorkflow = gql `
12573
13020
  id
12574
13021
  name
12575
13022
  creationDate
13023
+ modifiedDate
12576
13024
  owner {
12577
13025
  id
12578
13026
  }
@@ -12809,6 +13257,7 @@ export const QueryWorkflows = gql `
12809
13257
  id
12810
13258
  name
12811
13259
  creationDate
13260
+ modifiedDate
12812
13261
  relevance
12813
13262
  owner {
12814
13263
  id