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.
@@ -4236,6 +4236,8 @@ export type Event = {
4236
4236
  endDate?: Maybe<Scalars['DateTime']['output']>;
4237
4237
  /** The EPSG code for spatial reference of the event. */
4238
4238
  epsgCode?: Maybe<Scalars['Int']['output']>;
4239
+ /** The status of the event. */
4240
+ eventStatus?: Maybe<Scalars['String']['output']>;
4239
4241
  /** The feeds that discovered this event. */
4240
4242
  feeds?: Maybe<Array<Maybe<Feed>>>;
4241
4243
  /** The H3 index of the event. */
@@ -4258,14 +4260,20 @@ export type Event = {
4258
4260
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
4259
4261
  /** The name of the event. */
4260
4262
  name: Scalars['String']['output'];
4263
+ /** The organizer of the event. */
4264
+ organizer?: Maybe<Scalars['String']['output']>;
4261
4265
  /** The owner of the event. */
4262
4266
  owner: Owner;
4267
+ /** The performer at the event. */
4268
+ performer?: Maybe<Scalars['String']['output']>;
4263
4269
  /** The event price. */
4264
4270
  price?: Maybe<Scalars['Decimal']['output']>;
4265
4271
  /** The currency of the event price. */
4266
4272
  priceCurrency?: Maybe<Scalars['String']['output']>;
4267
4273
  /** The relevance score of the event. */
4268
4274
  relevance?: Maybe<Scalars['Float']['output']>;
4275
+ /** The sponsor of the event. */
4276
+ sponsor?: Maybe<Scalars['String']['output']>;
4269
4277
  /** The event start date. */
4270
4278
  startDate?: Maybe<Scalars['DateTime']['output']>;
4271
4279
  /** The state of the event (i.e. created, enabled). */
@@ -4276,6 +4284,8 @@ export type Event = {
4276
4284
  typicalAgeRange?: Maybe<Scalars['String']['output']>;
4277
4285
  /** The event URI. */
4278
4286
  uri?: Maybe<Scalars['URL']['output']>;
4287
+ /** The workflow associated with this event. */
4288
+ workflow?: Maybe<Workflow>;
4279
4289
  };
4280
4290
  /** Represents a event facet. */
4281
4291
  export type EventFacet = {
@@ -4388,6 +4398,8 @@ export type EventInput = {
4388
4398
  description?: InputMaybe<Scalars['String']['input']>;
4389
4399
  /** The event end date. */
4390
4400
  endDate?: InputMaybe<Scalars['DateTime']['input']>;
4401
+ /** The status of the event. */
4402
+ eventStatus?: InputMaybe<Scalars['String']['input']>;
4391
4403
  /** The event external identifier. */
4392
4404
  identifier?: InputMaybe<Scalars['String']['input']>;
4393
4405
  /** If the event is accessible for free. */
@@ -4400,10 +4412,16 @@ export type EventInput = {
4400
4412
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
4401
4413
  /** The name of the event. */
4402
4414
  name: Scalars['String']['input'];
4415
+ /** The organizer of the event. */
4416
+ organizer?: InputMaybe<Scalars['String']['input']>;
4417
+ /** The performer at the event. */
4418
+ performer?: InputMaybe<Scalars['String']['input']>;
4403
4419
  /** The event price. */
4404
4420
  price?: InputMaybe<Scalars['Decimal']['input']>;
4405
4421
  /** The currency of the event price. */
4406
4422
  priceCurrency?: InputMaybe<Scalars['String']['input']>;
4423
+ /** The sponsor of the event. */
4424
+ sponsor?: InputMaybe<Scalars['String']['input']>;
4407
4425
  /** The event start date. */
4408
4426
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
4409
4427
  /** The event typical age range. */
@@ -4520,6 +4538,8 @@ export type EventUpdateInput = {
4520
4538
  description?: InputMaybe<Scalars['String']['input']>;
4521
4539
  /** The event end date. */
4522
4540
  endDate?: InputMaybe<Scalars['DateTime']['input']>;
4541
+ /** The status of the event. */
4542
+ eventStatus?: InputMaybe<Scalars['String']['input']>;
4523
4543
  /** The ID of the event to update. */
4524
4544
  id: Scalars['ID']['input'];
4525
4545
  /** The event external identifier. */
@@ -4534,10 +4554,16 @@ export type EventUpdateInput = {
4534
4554
  minPrice?: InputMaybe<Scalars['Decimal']['input']>;
4535
4555
  /** The name of the event. */
4536
4556
  name?: InputMaybe<Scalars['String']['input']>;
4557
+ /** The organizer of the event. */
4558
+ organizer?: InputMaybe<Scalars['String']['input']>;
4559
+ /** The performer at the event. */
4560
+ performer?: InputMaybe<Scalars['String']['input']>;
4537
4561
  /** The event price. */
4538
4562
  price?: InputMaybe<Scalars['Decimal']['input']>;
4539
4563
  /** The currency of the event price. */
4540
4564
  priceCurrency?: InputMaybe<Scalars['String']['input']>;
4565
+ /** The sponsor of the event. */
4566
+ sponsor?: InputMaybe<Scalars['String']['input']>;
4541
4567
  /** The event start date. */
4542
4568
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
4543
4569
  /** The event typical age range. */
@@ -6645,6 +6671,8 @@ export type Investment = {
6645
6671
  thing?: Maybe<Scalars['String']['output']>;
6646
6672
  /** The investment URI. */
6647
6673
  uri?: Maybe<Scalars['URL']['output']>;
6674
+ /** The workflow associated with this investment. */
6675
+ workflow?: Maybe<Workflow>;
6648
6676
  };
6649
6677
  /** Represents an investment facet. */
6650
6678
  export type InvestmentFacet = {
@@ -6766,6 +6794,8 @@ export type InvestmentFund = {
6766
6794
  thing?: Maybe<Scalars['String']['output']>;
6767
6795
  /** The investmentfund URI. */
6768
6796
  uri?: Maybe<Scalars['URL']['output']>;
6797
+ /** The workflow associated with this investment fund. */
6798
+ workflow?: Maybe<Workflow>;
6769
6799
  };
6770
6800
  /** Represents an investment fund facet. */
6771
6801
  export type InvestmentFundFacet = {
@@ -7248,6 +7278,8 @@ export type LinearProjectsInput = {
7248
7278
  /** Represents a hyperlink. */
7249
7279
  export type LinkReference = {
7250
7280
  __typename?: 'LinkReference';
7281
+ /** Text excerpts from the linked source, used as citations for enrichment provenance. */
7282
+ excerpts?: Maybe<Scalars['String']['output']>;
7251
7283
  /** The hyperlink type. */
7252
7284
  linkType?: Maybe<LinkTypes>;
7253
7285
  /** The hyperlink URI. */
@@ -7255,6 +7287,8 @@ export type LinkReference = {
7255
7287
  };
7256
7288
  /** Represents a hyperlink. */
7257
7289
  export type LinkReferenceInput = {
7290
+ /** Text excerpts from the linked source, used as citations for enrichment provenance. */
7291
+ excerpts?: InputMaybe<Scalars['String']['input']>;
7258
7292
  /** The hyperlink type. */
7259
7293
  linkType?: InputMaybe<LinkTypes>;
7260
7294
  /** The hyperlink URI. */
@@ -7516,6 +7550,8 @@ export type MedicalCondition = {
7516
7550
  thing?: Maybe<Scalars['String']['output']>;
7517
7551
  /** The medicalcondition URI. */
7518
7552
  uri?: Maybe<Scalars['URL']['output']>;
7553
+ /** The workflow associated with this medical condition. */
7554
+ workflow?: Maybe<Workflow>;
7519
7555
  };
7520
7556
  /** Represents a medical condition facet. */
7521
7557
  export type MedicalConditionFacet = {
@@ -7673,6 +7709,8 @@ export type MedicalContraindication = {
7673
7709
  thing?: Maybe<Scalars['String']['output']>;
7674
7710
  /** The medicalcontraindication URI. */
7675
7711
  uri?: Maybe<Scalars['URL']['output']>;
7712
+ /** The workflow associated with this medical contraindication. */
7713
+ workflow?: Maybe<Workflow>;
7676
7714
  };
7677
7715
  /** Represents a medical contraindication facet. */
7678
7716
  export type MedicalContraindicationFacet = {
@@ -7830,6 +7868,8 @@ export type MedicalDevice = {
7830
7868
  thing?: Maybe<Scalars['String']['output']>;
7831
7869
  /** The medicaldevice URI. */
7832
7870
  uri?: Maybe<Scalars['URL']['output']>;
7871
+ /** The workflow associated with this medical device. */
7872
+ workflow?: Maybe<Workflow>;
7833
7873
  };
7834
7874
  /** Represents a medical device facet. */
7835
7875
  export type MedicalDeviceFacet = {
@@ -7987,6 +8027,8 @@ export type MedicalDrug = {
7987
8027
  thing?: Maybe<Scalars['String']['output']>;
7988
8028
  /** The medicaldrug URI. */
7989
8029
  uri?: Maybe<Scalars['URL']['output']>;
8030
+ /** The workflow associated with this medical drug. */
8031
+ workflow?: Maybe<Workflow>;
7990
8032
  };
7991
8033
  /** Represents a medical drug class. */
7992
8034
  export type MedicalDrugClass = {
@@ -8027,6 +8069,8 @@ export type MedicalDrugClass = {
8027
8069
  thing?: Maybe<Scalars['String']['output']>;
8028
8070
  /** The medicaldrugclass URI. */
8029
8071
  uri?: Maybe<Scalars['URL']['output']>;
8072
+ /** The workflow associated with this medical drug class. */
8073
+ workflow?: Maybe<Workflow>;
8030
8074
  };
8031
8075
  /** Represents a medical drug class facet. */
8032
8076
  export type MedicalDrugClassFacet = {
@@ -8301,6 +8345,8 @@ export type MedicalGuideline = {
8301
8345
  thing?: Maybe<Scalars['String']['output']>;
8302
8346
  /** The medicalguideline URI. */
8303
8347
  uri?: Maybe<Scalars['URL']['output']>;
8348
+ /** The workflow associated with this medical guideline. */
8349
+ workflow?: Maybe<Workflow>;
8304
8350
  };
8305
8351
  /** Represents a medical guideline facet. */
8306
8352
  export type MedicalGuidelineFacet = {
@@ -8458,6 +8504,8 @@ export type MedicalIndication = {
8458
8504
  thing?: Maybe<Scalars['String']['output']>;
8459
8505
  /** The medicalindication URI. */
8460
8506
  uri?: Maybe<Scalars['URL']['output']>;
8507
+ /** The workflow associated with this medical indication. */
8508
+ workflow?: Maybe<Workflow>;
8461
8509
  };
8462
8510
  /** Represents a medical indication facet. */
8463
8511
  export type MedicalIndicationFacet = {
@@ -8615,6 +8663,8 @@ export type MedicalProcedure = {
8615
8663
  thing?: Maybe<Scalars['String']['output']>;
8616
8664
  /** The medicalprocedure URI. */
8617
8665
  uri?: Maybe<Scalars['URL']['output']>;
8666
+ /** The workflow associated with this medical procedure. */
8667
+ workflow?: Maybe<Workflow>;
8618
8668
  };
8619
8669
  /** Represents a medical procedure facet. */
8620
8670
  export type MedicalProcedureFacet = {
@@ -8774,6 +8824,8 @@ export type MedicalStudy = {
8774
8824
  thing?: Maybe<Scalars['String']['output']>;
8775
8825
  /** The medicalstudy URI. */
8776
8826
  uri?: Maybe<Scalars['URL']['output']>;
8827
+ /** The workflow associated with this medical study. */
8828
+ workflow?: Maybe<Workflow>;
8777
8829
  };
8778
8830
  /** Represents a medical study facet. */
8779
8831
  export type MedicalStudyFacet = {
@@ -8937,6 +8989,8 @@ export type MedicalTest = {
8937
8989
  thing?: Maybe<Scalars['String']['output']>;
8938
8990
  /** The medicaltest URI. */
8939
8991
  uri?: Maybe<Scalars['URL']['output']>;
8992
+ /** The workflow associated with this medical test. */
8993
+ workflow?: Maybe<Workflow>;
8940
8994
  };
8941
8995
  /** Represents a medical test facet. */
8942
8996
  export type MedicalTestFacet = {
@@ -9094,6 +9148,8 @@ export type MedicalTherapy = {
9094
9148
  thing?: Maybe<Scalars['String']['output']>;
9095
9149
  /** The medicaltherapy URI. */
9096
9150
  uri?: Maybe<Scalars['URL']['output']>;
9151
+ /** The workflow associated with this medical therapy. */
9152
+ workflow?: Maybe<Workflow>;
9097
9153
  };
9098
9154
  /** Represents a medical therapy facet. */
9099
9155
  export type MedicalTherapyFacet = {
@@ -12178,6 +12234,8 @@ export type Organization = {
12178
12234
  creationDate: Scalars['DateTime']['output'];
12179
12235
  /** The organization description. */
12180
12236
  description?: Maybe<Scalars['String']['output']>;
12237
+ /** The email address of the organization. */
12238
+ email?: Maybe<Scalars['String']['output']>;
12181
12239
  /** The EPSG code for spatial reference of the organization. */
12182
12240
  epsgCode?: Maybe<Scalars['Int']['output']>;
12183
12241
  /** The feeds that discovered this organization. */
@@ -12196,6 +12254,8 @@ export type Organization = {
12196
12254
  investment?: Maybe<Scalars['Decimal']['output']>;
12197
12255
  /** The currency of the investment into the organization. */
12198
12256
  investmentCurrency?: Maybe<Scalars['String']['output']>;
12257
+ /** The official legal name of the organization. */
12258
+ legalName?: Maybe<Scalars['String']['output']>;
12199
12259
  /** The extracted hyperlinks. */
12200
12260
  links?: Maybe<Array<Maybe<LinkReference>>>;
12201
12261
  /** The geo-location of the organization. */
@@ -12214,10 +12274,14 @@ export type Organization = {
12214
12274
  revenueCurrency?: Maybe<Scalars['String']['output']>;
12215
12275
  /** The state of the organization (i.e. created, enabled). */
12216
12276
  state: EntityState;
12277
+ /** The telephone number of the organization. */
12278
+ telephone?: Maybe<Scalars['String']['output']>;
12217
12279
  /** The JSON-LD value of the organization. */
12218
12280
  thing?: Maybe<Scalars['String']['output']>;
12219
12281
  /** The organization URI. */
12220
12282
  uri?: Maybe<Scalars['URL']['output']>;
12283
+ /** The workflow associated with this organization. */
12284
+ workflow?: Maybe<Workflow>;
12221
12285
  };
12222
12286
  /** Represents an organization facet. */
12223
12287
  export type OrganizationFacet = {
@@ -12306,6 +12370,8 @@ export type OrganizationInput = {
12306
12370
  boundary?: InputMaybe<Scalars['String']['input']>;
12307
12371
  /** The organization description. */
12308
12372
  description?: InputMaybe<Scalars['String']['input']>;
12373
+ /** The email address of the organization. */
12374
+ email?: InputMaybe<Scalars['String']['input']>;
12309
12375
  /** The founding date of the organization. */
12310
12376
  foundingDate?: InputMaybe<Scalars['DateTime']['input']>;
12311
12377
  /** The organization external identifier. */
@@ -12316,6 +12382,8 @@ export type OrganizationInput = {
12316
12382
  investment?: InputMaybe<Scalars['Decimal']['input']>;
12317
12383
  /** The currency of the investment into the organization. */
12318
12384
  investmentCurrency?: InputMaybe<Scalars['String']['input']>;
12385
+ /** The official legal name of the organization. */
12386
+ legalName?: InputMaybe<Scalars['String']['input']>;
12319
12387
  /** The organization geo-location. */
12320
12388
  location?: InputMaybe<PointInput>;
12321
12389
  /** The name of the organization. */
@@ -12324,6 +12392,8 @@ export type OrganizationInput = {
12324
12392
  revenue?: InputMaybe<Scalars['Decimal']['input']>;
12325
12393
  /** The currency of the revenue of the organization. */
12326
12394
  revenueCurrency?: InputMaybe<Scalars['String']['input']>;
12395
+ /** The telephone number of the organization. */
12396
+ telephone?: InputMaybe<Scalars['String']['input']>;
12327
12397
  /** The organization URI. */
12328
12398
  uri?: InputMaybe<Scalars['URL']['input']>;
12329
12399
  };
@@ -12345,6 +12415,8 @@ export type OrganizationUpdateInput = {
12345
12415
  boundary?: InputMaybe<Scalars['String']['input']>;
12346
12416
  /** The organization description. */
12347
12417
  description?: InputMaybe<Scalars['String']['input']>;
12418
+ /** The email address of the organization. */
12419
+ email?: InputMaybe<Scalars['String']['input']>;
12348
12420
  /** The founding date of the organization. */
12349
12421
  foundingDate?: InputMaybe<Scalars['DateTime']['input']>;
12350
12422
  /** The ID of the organization to update. */
@@ -12357,6 +12429,8 @@ export type OrganizationUpdateInput = {
12357
12429
  investment?: InputMaybe<Scalars['Decimal']['input']>;
12358
12430
  /** The currency of the investment into the organization. */
12359
12431
  investmentCurrency?: InputMaybe<Scalars['String']['input']>;
12432
+ /** The official legal name of the organization. */
12433
+ legalName?: InputMaybe<Scalars['String']['input']>;
12360
12434
  /** The organization geo-location. */
12361
12435
  location?: InputMaybe<PointInput>;
12362
12436
  /** The name of the organization. */
@@ -12365,6 +12439,8 @@ export type OrganizationUpdateInput = {
12365
12439
  revenue?: InputMaybe<Scalars['Decimal']['input']>;
12366
12440
  /** The currency of the revenue of the organization. */
12367
12441
  revenueCurrency?: InputMaybe<Scalars['String']['input']>;
12442
+ /** The telephone number of the organization. */
12443
+ telephone?: InputMaybe<Scalars['String']['input']>;
12368
12444
  /** The organization URI. */
12369
12445
  uri?: InputMaybe<Scalars['URL']['input']>;
12370
12446
  };
@@ -12574,6 +12650,8 @@ export type Person = {
12574
12650
  title?: Maybe<Scalars['String']['output']>;
12575
12651
  /** The person URI. */
12576
12652
  uri?: Maybe<Scalars['URL']['output']>;
12653
+ /** The workflow associated with this person. */
12654
+ workflow?: Maybe<Workflow>;
12577
12655
  /** The organizations the person works for. */
12578
12656
  worksFor?: Maybe<Array<Maybe<Organization>>>;
12579
12657
  };
@@ -12796,16 +12874,24 @@ export type Place = {
12796
12874
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
12797
12875
  /** The name of the place. */
12798
12876
  name: Scalars['String']['output'];
12877
+ /** The opening hours of the place. */
12878
+ openingHours?: Maybe<Scalars['String']['output']>;
12799
12879
  /** The owner of the place. */
12800
12880
  owner: Owner;
12881
+ /** The price range of the place. */
12882
+ priceRange?: Maybe<Scalars['String']['output']>;
12801
12883
  /** The relevance score of the place. */
12802
12884
  relevance?: Maybe<Scalars['Float']['output']>;
12803
12885
  /** The state of the place (i.e. created, enabled). */
12804
12886
  state: EntityState;
12887
+ /** The telephone number of the place. */
12888
+ telephone?: Maybe<Scalars['String']['output']>;
12805
12889
  /** The JSON-LD value of the place. */
12806
12890
  thing?: Maybe<Scalars['String']['output']>;
12807
12891
  /** The place URI. */
12808
12892
  uri?: Maybe<Scalars['URL']['output']>;
12893
+ /** The workflow associated with this place. */
12894
+ workflow?: Maybe<Workflow>;
12809
12895
  };
12810
12896
  /** Represents a place facet. */
12811
12897
  export type PlaceFacet = {
@@ -12898,6 +12984,12 @@ export type PlaceInput = {
12898
12984
  location?: InputMaybe<PointInput>;
12899
12985
  /** The name of the place. */
12900
12986
  name: Scalars['String']['input'];
12987
+ /** The opening hours of the place. */
12988
+ openingHours?: InputMaybe<Scalars['String']['input']>;
12989
+ /** The price range of the place. */
12990
+ priceRange?: InputMaybe<Scalars['String']['input']>;
12991
+ /** The telephone number of the place. */
12992
+ telephone?: InputMaybe<Scalars['String']['input']>;
12901
12993
  /** The place URI. */
12902
12994
  uri?: InputMaybe<Scalars['URL']['input']>;
12903
12995
  };
@@ -12927,6 +13019,12 @@ export type PlaceUpdateInput = {
12927
13019
  location?: InputMaybe<PointInput>;
12928
13020
  /** The name of the place. */
12929
13021
  name?: InputMaybe<Scalars['String']['input']>;
13022
+ /** The opening hours of the place. */
13023
+ openingHours?: InputMaybe<Scalars['String']['input']>;
13024
+ /** The price range of the place. */
13025
+ priceRange?: InputMaybe<Scalars['String']['input']>;
13026
+ /** The telephone number of the place. */
13027
+ telephone?: InputMaybe<Scalars['String']['input']>;
12930
13028
  /** The place URI. */
12931
13029
  uri?: InputMaybe<Scalars['URL']['input']>;
12932
13030
  };
@@ -13079,6 +13177,8 @@ export type Product = {
13079
13177
  epsgCode?: Maybe<Scalars['Int']['output']>;
13080
13178
  /** The feeds that discovered this product. */
13081
13179
  feeds?: Maybe<Array<Maybe<Feed>>>;
13180
+ /** The Global Trade Item Number (GTIN). */
13181
+ gtin?: Maybe<Scalars['String']['output']>;
13082
13182
  /** The H3 index of the product. */
13083
13183
  h3?: Maybe<H3>;
13084
13184
  /** The ID of the product. */
@@ -13095,6 +13195,8 @@ export type Product = {
13095
13195
  model?: Maybe<Scalars['String']['output']>;
13096
13196
  /** The modified date of the product. */
13097
13197
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
13198
+ /** The Manufacturer Part Number (MPN). */
13199
+ mpn?: Maybe<Scalars['String']['output']>;
13098
13200
  /** The name of the product. */
13099
13201
  name: Scalars['String']['output'];
13100
13202
  /** The owner of the product. */
@@ -13115,6 +13217,8 @@ export type Product = {
13115
13217
  upc?: Maybe<Scalars['String']['output']>;
13116
13218
  /** The product URI. */
13117
13219
  uri?: Maybe<Scalars['URL']['output']>;
13220
+ /** The workflow associated with this product. */
13221
+ workflow?: Maybe<Workflow>;
13118
13222
  };
13119
13223
  /** Represents a product facet. */
13120
13224
  export type ProductFacet = {
@@ -13217,6 +13321,8 @@ export type ProductInput = {
13217
13321
  brand?: InputMaybe<Scalars['String']['input']>;
13218
13322
  /** The product description. */
13219
13323
  description?: InputMaybe<Scalars['String']['input']>;
13324
+ /** The Global Trade Item Number (GTIN). */
13325
+ gtin?: InputMaybe<Scalars['String']['input']>;
13220
13326
  /** The product external identifier. */
13221
13327
  identifier?: InputMaybe<Scalars['String']['input']>;
13222
13328
  /** The product geo-location. */
@@ -13225,6 +13331,8 @@ export type ProductInput = {
13225
13331
  manufacturer?: InputMaybe<Scalars['String']['input']>;
13226
13332
  /** The product model. */
13227
13333
  model?: InputMaybe<Scalars['String']['input']>;
13334
+ /** The Manufacturer Part Number (MPN). */
13335
+ mpn?: InputMaybe<Scalars['String']['input']>;
13228
13336
  /** The name of the product. */
13229
13337
  name: Scalars['String']['input'];
13230
13338
  /** The production date. */
@@ -13256,6 +13364,8 @@ export type ProductUpdateInput = {
13256
13364
  brand?: InputMaybe<Scalars['String']['input']>;
13257
13365
  /** The product description. */
13258
13366
  description?: InputMaybe<Scalars['String']['input']>;
13367
+ /** The Global Trade Item Number (GTIN). */
13368
+ gtin?: InputMaybe<Scalars['String']['input']>;
13259
13369
  /** The ID of the product to update. */
13260
13370
  id: Scalars['ID']['input'];
13261
13371
  /** The product external identifier. */
@@ -13266,6 +13376,8 @@ export type ProductUpdateInput = {
13266
13376
  manufacturer?: InputMaybe<Scalars['String']['input']>;
13267
13377
  /** The product model. */
13268
13378
  model?: InputMaybe<Scalars['String']['input']>;
13379
+ /** The Manufacturer Part Number (MPN). */
13380
+ mpn?: InputMaybe<Scalars['String']['input']>;
13269
13381
  /** The name of the product. */
13270
13382
  name?: InputMaybe<Scalars['String']['input']>;
13271
13383
  /** The production date. */
@@ -14974,6 +15086,8 @@ export type Repo = {
14974
15086
  id: Scalars['ID']['output'];
14975
15087
  /** The repo external identifier. */
14976
15088
  identifier?: Maybe<Scalars['String']['output']>;
15089
+ /** The extracted hyperlinks. */
15090
+ links?: Maybe<Array<Maybe<LinkReference>>>;
14977
15091
  /** The modified date of the repo. */
14978
15092
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
14979
15093
  /** The name of the repo. */
@@ -14990,6 +15104,8 @@ export type Repo = {
14990
15104
  thing?: Maybe<Scalars['String']['output']>;
14991
15105
  /** The repo URI. */
14992
15106
  uri?: Maybe<Scalars['URL']['output']>;
15107
+ /** The workflow associated with this repo. */
15108
+ workflow?: Maybe<Workflow>;
14993
15109
  };
14994
15110
  /** Represents a repo facet. */
14995
15111
  export type RepoFacet = {
@@ -15676,6 +15792,8 @@ export type Software = {
15676
15792
  id: Scalars['ID']['output'];
15677
15793
  /** The software external identifier. */
15678
15794
  identifier?: Maybe<Scalars['String']['output']>;
15795
+ /** The extracted hyperlinks. */
15796
+ links?: Maybe<Array<Maybe<LinkReference>>>;
15679
15797
  /** The modified date of the software. */
15680
15798
  modifiedDate?: Maybe<Scalars['DateTime']['output']>;
15681
15799
  /** The name of the software. */
@@ -15694,6 +15812,8 @@ export type Software = {
15694
15812
  thing?: Maybe<Scalars['String']['output']>;
15695
15813
  /** The software URI. */
15696
15814
  uri?: Maybe<Scalars['URL']['output']>;
15815
+ /** The workflow associated with this software. */
15816
+ workflow?: Maybe<Workflow>;
15697
15817
  };
15698
15818
  /** Represents a software facet. */
15699
15819
  export type SoftwareFacet = {
@@ -17302,6 +17422,7 @@ export type GetAlertQuery = {
17302
17422
  id: string;
17303
17423
  name: string;
17304
17424
  creationDate: any;
17425
+ modifiedDate?: any | null;
17305
17426
  state: EntityState;
17306
17427
  correlationId?: string | null;
17307
17428
  type: AlertTypes;
@@ -17532,6 +17653,7 @@ export type QueryAlertsQuery = {
17532
17653
  id: string;
17533
17654
  name: string;
17534
17655
  creationDate: any;
17656
+ modifiedDate?: any | null;
17535
17657
  relevance?: number | null;
17536
17658
  state: EntityState;
17537
17659
  correlationId?: string | null;
@@ -17989,6 +18111,7 @@ export type GetCollectionQuery = {
17989
18111
  id: string;
17990
18112
  name: string;
17991
18113
  creationDate: any;
18114
+ modifiedDate?: any | null;
17992
18115
  state: EntityState;
17993
18116
  type?: CollectionTypes | null;
17994
18117
  owner: {
@@ -18015,6 +18138,7 @@ export type QueryCollectionsQuery = {
18015
18138
  id: string;
18016
18139
  name: string;
18017
18140
  creationDate: any;
18141
+ modifiedDate?: any | null;
18018
18142
  relevance?: number | null;
18019
18143
  state: EntityState;
18020
18144
  type?: CollectionTypes | null;
@@ -18103,6 +18227,7 @@ export type GetConnectorQuery = {
18103
18227
  id: string;
18104
18228
  name: string;
18105
18229
  creationDate: any;
18230
+ modifiedDate?: any | null;
18106
18231
  state: EntityState;
18107
18232
  type?: ConnectorTypes | null;
18108
18233
  owner: {
@@ -18179,6 +18304,7 @@ export type QueryConnectorsQuery = {
18179
18304
  id: string;
18180
18305
  name: string;
18181
18306
  creationDate: any;
18307
+ modifiedDate?: any | null;
18182
18308
  relevance?: number | null;
18183
18309
  state: EntityState;
18184
18310
  type?: ConnectorTypes | null;
@@ -18669,6 +18795,7 @@ export type GetContentQuery = {
18669
18795
  id: string;
18670
18796
  name: string;
18671
18797
  creationDate: any;
18798
+ modifiedDate?: any | null;
18672
18799
  state: EntityState;
18673
18800
  originalDate?: any | null;
18674
18801
  finishedDate?: any | null;
@@ -19060,6 +19187,7 @@ export type GetContentQuery = {
19060
19187
  __typename?: 'LinkReference';
19061
19188
  uri?: any | null;
19062
19189
  linkType?: LinkTypes | null;
19190
+ excerpts?: string | null;
19063
19191
  }> | null;
19064
19192
  observations?: Array<{
19065
19193
  __typename?: 'Observation';
@@ -19603,6 +19731,7 @@ export type LookupContentsQuery = {
19603
19731
  id: string;
19604
19732
  name: string;
19605
19733
  creationDate: any;
19734
+ modifiedDate?: any | null;
19606
19735
  state: EntityState;
19607
19736
  originalDate?: any | null;
19608
19737
  finishedDate?: any | null;
@@ -19994,6 +20123,7 @@ export type LookupContentsQuery = {
19994
20123
  __typename?: 'LinkReference';
19995
20124
  uri?: any | null;
19996
20125
  linkType?: LinkTypes | null;
20126
+ excerpts?: string | null;
19997
20127
  }> | null;
19998
20128
  observations?: Array<{
19999
20129
  __typename?: 'Observation';
@@ -20371,6 +20501,7 @@ export type QueryContentsQuery = {
20371
20501
  id: string;
20372
20502
  name: string;
20373
20503
  creationDate: any;
20504
+ modifiedDate?: any | null;
20374
20505
  relevance?: number | null;
20375
20506
  state: EntityState;
20376
20507
  originalDate?: any | null;
@@ -20832,6 +20963,7 @@ export type QueryContentsObservationsQuery = {
20832
20963
  id: string;
20833
20964
  name: string;
20834
20965
  creationDate: any;
20966
+ modifiedDate?: any | null;
20835
20967
  relevance?: number | null;
20836
20968
  state: EntityState;
20837
20969
  originalDate?: any | null;
@@ -22827,6 +22959,7 @@ export type GetConversationQuery = {
22827
22959
  id: string;
22828
22960
  name: string;
22829
22961
  creationDate: any;
22962
+ modifiedDate?: any | null;
22830
22963
  state: EntityState;
22831
22964
  correlationId?: string | null;
22832
22965
  type?: ConversationTypes | null;
@@ -23892,6 +24025,7 @@ export type QueryConversationsQuery = {
23892
24025
  id: string;
23893
24026
  name: string;
23894
24027
  creationDate: any;
24028
+ modifiedDate?: any | null;
23895
24029
  relevance?: number | null;
23896
24030
  state: EntityState;
23897
24031
  correlationId?: string | null;
@@ -25072,6 +25206,7 @@ export type GetEventQuery = {
25072
25206
  id: string;
25073
25207
  name: string;
25074
25208
  creationDate: any;
25209
+ modifiedDate?: any | null;
25075
25210
  state: EntityState;
25076
25211
  alternateNames?: Array<string | null> | null;
25077
25212
  uri?: any | null;
@@ -25088,6 +25223,10 @@ export type GetEventQuery = {
25088
25223
  priceCurrency?: string | null;
25089
25224
  isAccessibleForFree?: boolean | null;
25090
25225
  typicalAgeRange?: string | null;
25226
+ organizer?: string | null;
25227
+ performer?: string | null;
25228
+ sponsor?: string | null;
25229
+ eventStatus?: string | null;
25091
25230
  owner: {
25092
25231
  __typename?: 'Owner';
25093
25232
  id: string;
@@ -25097,6 +25236,17 @@ export type GetEventQuery = {
25097
25236
  id: string;
25098
25237
  name: string;
25099
25238
  } | null> | null;
25239
+ links?: Array<{
25240
+ __typename?: 'LinkReference';
25241
+ uri?: any | null;
25242
+ linkType?: LinkTypes | null;
25243
+ excerpts?: string | null;
25244
+ } | null> | null;
25245
+ workflow?: {
25246
+ __typename?: 'Workflow';
25247
+ id: string;
25248
+ name: string;
25249
+ } | null;
25100
25250
  address?: {
25101
25251
  __typename?: 'Address';
25102
25252
  streetAddress?: string | null;
@@ -25120,6 +25270,7 @@ export type QueryEventsQuery = {
25120
25270
  id: string;
25121
25271
  name: string;
25122
25272
  creationDate: any;
25273
+ modifiedDate?: any | null;
25123
25274
  relevance?: number | null;
25124
25275
  state: EntityState;
25125
25276
  alternateNames?: Array<string | null> | null;
@@ -25137,6 +25288,10 @@ export type QueryEventsQuery = {
25137
25288
  priceCurrency?: string | null;
25138
25289
  isAccessibleForFree?: boolean | null;
25139
25290
  typicalAgeRange?: string | null;
25291
+ organizer?: string | null;
25292
+ performer?: string | null;
25293
+ sponsor?: string | null;
25294
+ eventStatus?: string | null;
25140
25295
  owner: {
25141
25296
  __typename?: 'Owner';
25142
25297
  id: string;
@@ -25146,6 +25301,17 @@ export type QueryEventsQuery = {
25146
25301
  id: string;
25147
25302
  name: string;
25148
25303
  } | null> | null;
25304
+ links?: Array<{
25305
+ __typename?: 'LinkReference';
25306
+ uri?: any | null;
25307
+ linkType?: LinkTypes | null;
25308
+ excerpts?: string | null;
25309
+ } | null> | null;
25310
+ workflow?: {
25311
+ __typename?: 'Workflow';
25312
+ id: string;
25313
+ name: string;
25314
+ } | null;
25149
25315
  address?: {
25150
25316
  __typename?: 'Address';
25151
25317
  streetAddress?: string | null;
@@ -25274,6 +25440,7 @@ export type GetFeedQuery = {
25274
25440
  id: string;
25275
25441
  name: string;
25276
25442
  creationDate: any;
25443
+ modifiedDate?: any | null;
25277
25444
  state: EntityState;
25278
25445
  correlationId?: string | null;
25279
25446
  type: FeedTypes;
@@ -25771,6 +25938,7 @@ export type QueryFeedsQuery = {
25771
25938
  id: string;
25772
25939
  name: string;
25773
25940
  creationDate: any;
25941
+ modifiedDate?: any | null;
25774
25942
  relevance?: number | null;
25775
25943
  state: EntityState;
25776
25944
  correlationId?: string | null;
@@ -26467,6 +26635,7 @@ export type GetInvestmentQuery = {
26467
26635
  id: string;
26468
26636
  name: string;
26469
26637
  creationDate: any;
26638
+ modifiedDate?: any | null;
26470
26639
  state: EntityState;
26471
26640
  alternateNames?: Array<string | null> | null;
26472
26641
  uri?: any | null;
@@ -26482,6 +26651,17 @@ export type GetInvestmentQuery = {
26482
26651
  id: string;
26483
26652
  name: string;
26484
26653
  } | null> | null;
26654
+ links?: Array<{
26655
+ __typename?: 'LinkReference';
26656
+ uri?: any | null;
26657
+ linkType?: LinkTypes | null;
26658
+ excerpts?: string | null;
26659
+ } | null> | null;
26660
+ workflow?: {
26661
+ __typename?: 'Workflow';
26662
+ id: string;
26663
+ name: string;
26664
+ } | null;
26485
26665
  } | null;
26486
26666
  };
26487
26667
  export type QueryInvestmentsQueryVariables = Exact<{
@@ -26497,6 +26677,7 @@ export type QueryInvestmentsQuery = {
26497
26677
  id: string;
26498
26678
  name: string;
26499
26679
  creationDate: any;
26680
+ modifiedDate?: any | null;
26500
26681
  relevance?: number | null;
26501
26682
  state: EntityState;
26502
26683
  alternateNames?: Array<string | null> | null;
@@ -26513,6 +26694,17 @@ export type QueryInvestmentsQuery = {
26513
26694
  id: string;
26514
26695
  name: string;
26515
26696
  } | null> | null;
26697
+ links?: Array<{
26698
+ __typename?: 'LinkReference';
26699
+ uri?: any | null;
26700
+ linkType?: LinkTypes | null;
26701
+ excerpts?: string | null;
26702
+ } | null> | null;
26703
+ workflow?: {
26704
+ __typename?: 'Workflow';
26705
+ id: string;
26706
+ name: string;
26707
+ } | null;
26516
26708
  } | null> | null;
26517
26709
  } | null;
26518
26710
  };
@@ -26596,6 +26788,7 @@ export type GetInvestmentFundQuery = {
26596
26788
  id: string;
26597
26789
  name: string;
26598
26790
  creationDate: any;
26791
+ modifiedDate?: any | null;
26599
26792
  state: EntityState;
26600
26793
  alternateNames?: Array<string | null> | null;
26601
26794
  uri?: any | null;
@@ -26611,6 +26804,17 @@ export type GetInvestmentFundQuery = {
26611
26804
  id: string;
26612
26805
  name: string;
26613
26806
  } | null> | null;
26807
+ links?: Array<{
26808
+ __typename?: 'LinkReference';
26809
+ uri?: any | null;
26810
+ linkType?: LinkTypes | null;
26811
+ excerpts?: string | null;
26812
+ } | null> | null;
26813
+ workflow?: {
26814
+ __typename?: 'Workflow';
26815
+ id: string;
26816
+ name: string;
26817
+ } | null;
26614
26818
  } | null;
26615
26819
  };
26616
26820
  export type QueryInvestmentFundsQueryVariables = Exact<{
@@ -26626,6 +26830,7 @@ export type QueryInvestmentFundsQuery = {
26626
26830
  id: string;
26627
26831
  name: string;
26628
26832
  creationDate: any;
26833
+ modifiedDate?: any | null;
26629
26834
  relevance?: number | null;
26630
26835
  state: EntityState;
26631
26836
  alternateNames?: Array<string | null> | null;
@@ -26642,6 +26847,17 @@ export type QueryInvestmentFundsQuery = {
26642
26847
  id: string;
26643
26848
  name: string;
26644
26849
  } | null> | null;
26850
+ links?: Array<{
26851
+ __typename?: 'LinkReference';
26852
+ uri?: any | null;
26853
+ linkType?: LinkTypes | null;
26854
+ excerpts?: string | null;
26855
+ } | null> | null;
26856
+ workflow?: {
26857
+ __typename?: 'Workflow';
26858
+ id: string;
26859
+ name: string;
26860
+ } | null;
26645
26861
  } | null> | null;
26646
26862
  } | null;
26647
26863
  };
@@ -26847,6 +27063,7 @@ export type GetMedicalConditionQuery = {
26847
27063
  id: string;
26848
27064
  name: string;
26849
27065
  creationDate: any;
27066
+ modifiedDate?: any | null;
26850
27067
  state: EntityState;
26851
27068
  alternateNames?: Array<string | null> | null;
26852
27069
  uri?: any | null;
@@ -26862,6 +27079,17 @@ export type GetMedicalConditionQuery = {
26862
27079
  id: string;
26863
27080
  name: string;
26864
27081
  } | null> | null;
27082
+ links?: Array<{
27083
+ __typename?: 'LinkReference';
27084
+ uri?: any | null;
27085
+ linkType?: LinkTypes | null;
27086
+ excerpts?: string | null;
27087
+ } | null> | null;
27088
+ workflow?: {
27089
+ __typename?: 'Workflow';
27090
+ id: string;
27091
+ name: string;
27092
+ } | null;
26865
27093
  } | null;
26866
27094
  };
26867
27095
  export type QueryMedicalConditionsQueryVariables = Exact<{
@@ -26877,6 +27105,7 @@ export type QueryMedicalConditionsQuery = {
26877
27105
  id: string;
26878
27106
  name: string;
26879
27107
  creationDate: any;
27108
+ modifiedDate?: any | null;
26880
27109
  relevance?: number | null;
26881
27110
  state: EntityState;
26882
27111
  alternateNames?: Array<string | null> | null;
@@ -26893,6 +27122,17 @@ export type QueryMedicalConditionsQuery = {
26893
27122
  id: string;
26894
27123
  name: string;
26895
27124
  } | null> | null;
27125
+ links?: Array<{
27126
+ __typename?: 'LinkReference';
27127
+ uri?: any | null;
27128
+ linkType?: LinkTypes | null;
27129
+ excerpts?: string | null;
27130
+ } | null> | null;
27131
+ workflow?: {
27132
+ __typename?: 'Workflow';
27133
+ id: string;
27134
+ name: string;
27135
+ } | null;
26896
27136
  } | null> | null;
26897
27137
  } | null;
26898
27138
  };
@@ -26976,6 +27216,7 @@ export type GetMedicalContraindicationQuery = {
26976
27216
  id: string;
26977
27217
  name: string;
26978
27218
  creationDate: any;
27219
+ modifiedDate?: any | null;
26979
27220
  state: EntityState;
26980
27221
  alternateNames?: Array<string | null> | null;
26981
27222
  uri?: any | null;
@@ -26991,6 +27232,17 @@ export type GetMedicalContraindicationQuery = {
26991
27232
  id: string;
26992
27233
  name: string;
26993
27234
  } | null> | null;
27235
+ links?: Array<{
27236
+ __typename?: 'LinkReference';
27237
+ uri?: any | null;
27238
+ linkType?: LinkTypes | null;
27239
+ excerpts?: string | null;
27240
+ } | null> | null;
27241
+ workflow?: {
27242
+ __typename?: 'Workflow';
27243
+ id: string;
27244
+ name: string;
27245
+ } | null;
26994
27246
  } | null;
26995
27247
  };
26996
27248
  export type QueryMedicalContraindicationsQueryVariables = Exact<{
@@ -27006,6 +27258,7 @@ export type QueryMedicalContraindicationsQuery = {
27006
27258
  id: string;
27007
27259
  name: string;
27008
27260
  creationDate: any;
27261
+ modifiedDate?: any | null;
27009
27262
  relevance?: number | null;
27010
27263
  state: EntityState;
27011
27264
  alternateNames?: Array<string | null> | null;
@@ -27022,6 +27275,17 @@ export type QueryMedicalContraindicationsQuery = {
27022
27275
  id: string;
27023
27276
  name: string;
27024
27277
  } | null> | null;
27278
+ links?: Array<{
27279
+ __typename?: 'LinkReference';
27280
+ uri?: any | null;
27281
+ linkType?: LinkTypes | null;
27282
+ excerpts?: string | null;
27283
+ } | null> | null;
27284
+ workflow?: {
27285
+ __typename?: 'Workflow';
27286
+ id: string;
27287
+ name: string;
27288
+ } | null;
27025
27289
  } | null> | null;
27026
27290
  } | null;
27027
27291
  };
@@ -27105,6 +27369,7 @@ export type GetMedicalDeviceQuery = {
27105
27369
  id: string;
27106
27370
  name: string;
27107
27371
  creationDate: any;
27372
+ modifiedDate?: any | null;
27108
27373
  state: EntityState;
27109
27374
  alternateNames?: Array<string | null> | null;
27110
27375
  uri?: any | null;
@@ -27120,6 +27385,17 @@ export type GetMedicalDeviceQuery = {
27120
27385
  id: string;
27121
27386
  name: string;
27122
27387
  } | null> | null;
27388
+ links?: Array<{
27389
+ __typename?: 'LinkReference';
27390
+ uri?: any | null;
27391
+ linkType?: LinkTypes | null;
27392
+ excerpts?: string | null;
27393
+ } | null> | null;
27394
+ workflow?: {
27395
+ __typename?: 'Workflow';
27396
+ id: string;
27397
+ name: string;
27398
+ } | null;
27123
27399
  } | null;
27124
27400
  };
27125
27401
  export type QueryMedicalDevicesQueryVariables = Exact<{
@@ -27135,6 +27411,7 @@ export type QueryMedicalDevicesQuery = {
27135
27411
  id: string;
27136
27412
  name: string;
27137
27413
  creationDate: any;
27414
+ modifiedDate?: any | null;
27138
27415
  relevance?: number | null;
27139
27416
  state: EntityState;
27140
27417
  alternateNames?: Array<string | null> | null;
@@ -27151,6 +27428,17 @@ export type QueryMedicalDevicesQuery = {
27151
27428
  id: string;
27152
27429
  name: string;
27153
27430
  } | null> | null;
27431
+ links?: Array<{
27432
+ __typename?: 'LinkReference';
27433
+ uri?: any | null;
27434
+ linkType?: LinkTypes | null;
27435
+ excerpts?: string | null;
27436
+ } | null> | null;
27437
+ workflow?: {
27438
+ __typename?: 'Workflow';
27439
+ id: string;
27440
+ name: string;
27441
+ } | null;
27154
27442
  } | null> | null;
27155
27443
  } | null;
27156
27444
  };
@@ -27234,6 +27522,7 @@ export type GetMedicalDrugQuery = {
27234
27522
  id: string;
27235
27523
  name: string;
27236
27524
  creationDate: any;
27525
+ modifiedDate?: any | null;
27237
27526
  state: EntityState;
27238
27527
  alternateNames?: Array<string | null> | null;
27239
27528
  uri?: any | null;
@@ -27249,6 +27538,17 @@ export type GetMedicalDrugQuery = {
27249
27538
  id: string;
27250
27539
  name: string;
27251
27540
  } | null> | null;
27541
+ links?: Array<{
27542
+ __typename?: 'LinkReference';
27543
+ uri?: any | null;
27544
+ linkType?: LinkTypes | null;
27545
+ excerpts?: string | null;
27546
+ } | null> | null;
27547
+ workflow?: {
27548
+ __typename?: 'Workflow';
27549
+ id: string;
27550
+ name: string;
27551
+ } | null;
27252
27552
  } | null;
27253
27553
  };
27254
27554
  export type QueryMedicalDrugsQueryVariables = Exact<{
@@ -27264,6 +27564,7 @@ export type QueryMedicalDrugsQuery = {
27264
27564
  id: string;
27265
27565
  name: string;
27266
27566
  creationDate: any;
27567
+ modifiedDate?: any | null;
27267
27568
  relevance?: number | null;
27268
27569
  state: EntityState;
27269
27570
  alternateNames?: Array<string | null> | null;
@@ -27280,6 +27581,17 @@ export type QueryMedicalDrugsQuery = {
27280
27581
  id: string;
27281
27582
  name: string;
27282
27583
  } | null> | null;
27584
+ links?: Array<{
27585
+ __typename?: 'LinkReference';
27586
+ uri?: any | null;
27587
+ linkType?: LinkTypes | null;
27588
+ excerpts?: string | null;
27589
+ } | null> | null;
27590
+ workflow?: {
27591
+ __typename?: 'Workflow';
27592
+ id: string;
27593
+ name: string;
27594
+ } | null;
27283
27595
  } | null> | null;
27284
27596
  } | null;
27285
27597
  };
@@ -27363,6 +27675,7 @@ export type GetMedicalDrugClassQuery = {
27363
27675
  id: string;
27364
27676
  name: string;
27365
27677
  creationDate: any;
27678
+ modifiedDate?: any | null;
27366
27679
  state: EntityState;
27367
27680
  alternateNames?: Array<string | null> | null;
27368
27681
  uri?: any | null;
@@ -27378,6 +27691,17 @@ export type GetMedicalDrugClassQuery = {
27378
27691
  id: string;
27379
27692
  name: string;
27380
27693
  } | null> | null;
27694
+ links?: Array<{
27695
+ __typename?: 'LinkReference';
27696
+ uri?: any | null;
27697
+ linkType?: LinkTypes | null;
27698
+ excerpts?: string | null;
27699
+ } | null> | null;
27700
+ workflow?: {
27701
+ __typename?: 'Workflow';
27702
+ id: string;
27703
+ name: string;
27704
+ } | null;
27381
27705
  } | null;
27382
27706
  };
27383
27707
  export type QueryMedicalDrugClassesQueryVariables = Exact<{
@@ -27393,6 +27717,7 @@ export type QueryMedicalDrugClassesQuery = {
27393
27717
  id: string;
27394
27718
  name: string;
27395
27719
  creationDate: any;
27720
+ modifiedDate?: any | null;
27396
27721
  relevance?: number | null;
27397
27722
  state: EntityState;
27398
27723
  alternateNames?: Array<string | null> | null;
@@ -27409,6 +27734,17 @@ export type QueryMedicalDrugClassesQuery = {
27409
27734
  id: string;
27410
27735
  name: string;
27411
27736
  } | null> | null;
27737
+ links?: Array<{
27738
+ __typename?: 'LinkReference';
27739
+ uri?: any | null;
27740
+ linkType?: LinkTypes | null;
27741
+ excerpts?: string | null;
27742
+ } | null> | null;
27743
+ workflow?: {
27744
+ __typename?: 'Workflow';
27745
+ id: string;
27746
+ name: string;
27747
+ } | null;
27412
27748
  } | null> | null;
27413
27749
  } | null;
27414
27750
  };
@@ -27492,6 +27828,7 @@ export type GetMedicalGuidelineQuery = {
27492
27828
  id: string;
27493
27829
  name: string;
27494
27830
  creationDate: any;
27831
+ modifiedDate?: any | null;
27495
27832
  state: EntityState;
27496
27833
  alternateNames?: Array<string | null> | null;
27497
27834
  uri?: any | null;
@@ -27507,6 +27844,17 @@ export type GetMedicalGuidelineQuery = {
27507
27844
  id: string;
27508
27845
  name: string;
27509
27846
  } | null> | null;
27847
+ links?: Array<{
27848
+ __typename?: 'LinkReference';
27849
+ uri?: any | null;
27850
+ linkType?: LinkTypes | null;
27851
+ excerpts?: string | null;
27852
+ } | null> | null;
27853
+ workflow?: {
27854
+ __typename?: 'Workflow';
27855
+ id: string;
27856
+ name: string;
27857
+ } | null;
27510
27858
  } | null;
27511
27859
  };
27512
27860
  export type QueryMedicalGuidelinesQueryVariables = Exact<{
@@ -27522,6 +27870,7 @@ export type QueryMedicalGuidelinesQuery = {
27522
27870
  id: string;
27523
27871
  name: string;
27524
27872
  creationDate: any;
27873
+ modifiedDate?: any | null;
27525
27874
  relevance?: number | null;
27526
27875
  state: EntityState;
27527
27876
  alternateNames?: Array<string | null> | null;
@@ -27538,6 +27887,17 @@ export type QueryMedicalGuidelinesQuery = {
27538
27887
  id: string;
27539
27888
  name: string;
27540
27889
  } | null> | null;
27890
+ links?: Array<{
27891
+ __typename?: 'LinkReference';
27892
+ uri?: any | null;
27893
+ linkType?: LinkTypes | null;
27894
+ excerpts?: string | null;
27895
+ } | null> | null;
27896
+ workflow?: {
27897
+ __typename?: 'Workflow';
27898
+ id: string;
27899
+ name: string;
27900
+ } | null;
27541
27901
  } | null> | null;
27542
27902
  } | null;
27543
27903
  };
@@ -27621,6 +27981,7 @@ export type GetMedicalIndicationQuery = {
27621
27981
  id: string;
27622
27982
  name: string;
27623
27983
  creationDate: any;
27984
+ modifiedDate?: any | null;
27624
27985
  state: EntityState;
27625
27986
  alternateNames?: Array<string | null> | null;
27626
27987
  uri?: any | null;
@@ -27636,6 +27997,17 @@ export type GetMedicalIndicationQuery = {
27636
27997
  id: string;
27637
27998
  name: string;
27638
27999
  } | null> | null;
28000
+ links?: Array<{
28001
+ __typename?: 'LinkReference';
28002
+ uri?: any | null;
28003
+ linkType?: LinkTypes | null;
28004
+ excerpts?: string | null;
28005
+ } | null> | null;
28006
+ workflow?: {
28007
+ __typename?: 'Workflow';
28008
+ id: string;
28009
+ name: string;
28010
+ } | null;
27639
28011
  } | null;
27640
28012
  };
27641
28013
  export type QueryMedicalIndicationsQueryVariables = Exact<{
@@ -27651,6 +28023,7 @@ export type QueryMedicalIndicationsQuery = {
27651
28023
  id: string;
27652
28024
  name: string;
27653
28025
  creationDate: any;
28026
+ modifiedDate?: any | null;
27654
28027
  relevance?: number | null;
27655
28028
  state: EntityState;
27656
28029
  alternateNames?: Array<string | null> | null;
@@ -27667,6 +28040,17 @@ export type QueryMedicalIndicationsQuery = {
27667
28040
  id: string;
27668
28041
  name: string;
27669
28042
  } | null> | null;
28043
+ links?: Array<{
28044
+ __typename?: 'LinkReference';
28045
+ uri?: any | null;
28046
+ linkType?: LinkTypes | null;
28047
+ excerpts?: string | null;
28048
+ } | null> | null;
28049
+ workflow?: {
28050
+ __typename?: 'Workflow';
28051
+ id: string;
28052
+ name: string;
28053
+ } | null;
27670
28054
  } | null> | null;
27671
28055
  } | null;
27672
28056
  };
@@ -27750,6 +28134,7 @@ export type GetMedicalProcedureQuery = {
27750
28134
  id: string;
27751
28135
  name: string;
27752
28136
  creationDate: any;
28137
+ modifiedDate?: any | null;
27753
28138
  state: EntityState;
27754
28139
  alternateNames?: Array<string | null> | null;
27755
28140
  uri?: any | null;
@@ -27765,6 +28150,17 @@ export type GetMedicalProcedureQuery = {
27765
28150
  id: string;
27766
28151
  name: string;
27767
28152
  } | null> | null;
28153
+ links?: Array<{
28154
+ __typename?: 'LinkReference';
28155
+ uri?: any | null;
28156
+ linkType?: LinkTypes | null;
28157
+ excerpts?: string | null;
28158
+ } | null> | null;
28159
+ workflow?: {
28160
+ __typename?: 'Workflow';
28161
+ id: string;
28162
+ name: string;
28163
+ } | null;
27768
28164
  } | null;
27769
28165
  };
27770
28166
  export type QueryMedicalProceduresQueryVariables = Exact<{
@@ -27780,6 +28176,7 @@ export type QueryMedicalProceduresQuery = {
27780
28176
  id: string;
27781
28177
  name: string;
27782
28178
  creationDate: any;
28179
+ modifiedDate?: any | null;
27783
28180
  relevance?: number | null;
27784
28181
  state: EntityState;
27785
28182
  alternateNames?: Array<string | null> | null;
@@ -27796,6 +28193,17 @@ export type QueryMedicalProceduresQuery = {
27796
28193
  id: string;
27797
28194
  name: string;
27798
28195
  } | null> | null;
28196
+ links?: Array<{
28197
+ __typename?: 'LinkReference';
28198
+ uri?: any | null;
28199
+ linkType?: LinkTypes | null;
28200
+ excerpts?: string | null;
28201
+ } | null> | null;
28202
+ workflow?: {
28203
+ __typename?: 'Workflow';
28204
+ id: string;
28205
+ name: string;
28206
+ } | null;
27799
28207
  } | null> | null;
27800
28208
  } | null;
27801
28209
  };
@@ -27879,6 +28287,7 @@ export type GetMedicalStudyQuery = {
27879
28287
  id: string;
27880
28288
  name: string;
27881
28289
  creationDate: any;
28290
+ modifiedDate?: any | null;
27882
28291
  state: EntityState;
27883
28292
  alternateNames?: Array<string | null> | null;
27884
28293
  uri?: any | null;
@@ -27894,6 +28303,17 @@ export type GetMedicalStudyQuery = {
27894
28303
  id: string;
27895
28304
  name: string;
27896
28305
  } | null> | null;
28306
+ links?: Array<{
28307
+ __typename?: 'LinkReference';
28308
+ uri?: any | null;
28309
+ linkType?: LinkTypes | null;
28310
+ excerpts?: string | null;
28311
+ } | null> | null;
28312
+ workflow?: {
28313
+ __typename?: 'Workflow';
28314
+ id: string;
28315
+ name: string;
28316
+ } | null;
27897
28317
  address?: {
27898
28318
  __typename?: 'Address';
27899
28319
  streetAddress?: string | null;
@@ -27917,6 +28337,7 @@ export type QueryMedicalStudiesQuery = {
27917
28337
  id: string;
27918
28338
  name: string;
27919
28339
  creationDate: any;
28340
+ modifiedDate?: any | null;
27920
28341
  relevance?: number | null;
27921
28342
  state: EntityState;
27922
28343
  alternateNames?: Array<string | null> | null;
@@ -27933,6 +28354,17 @@ export type QueryMedicalStudiesQuery = {
27933
28354
  id: string;
27934
28355
  name: string;
27935
28356
  } | null> | null;
28357
+ links?: Array<{
28358
+ __typename?: 'LinkReference';
28359
+ uri?: any | null;
28360
+ linkType?: LinkTypes | null;
28361
+ excerpts?: string | null;
28362
+ } | null> | null;
28363
+ workflow?: {
28364
+ __typename?: 'Workflow';
28365
+ id: string;
28366
+ name: string;
28367
+ } | null;
27936
28368
  address?: {
27937
28369
  __typename?: 'Address';
27938
28370
  streetAddress?: string | null;
@@ -28024,6 +28456,7 @@ export type GetMedicalTestQuery = {
28024
28456
  id: string;
28025
28457
  name: string;
28026
28458
  creationDate: any;
28459
+ modifiedDate?: any | null;
28027
28460
  state: EntityState;
28028
28461
  alternateNames?: Array<string | null> | null;
28029
28462
  uri?: any | null;
@@ -28039,6 +28472,17 @@ export type GetMedicalTestQuery = {
28039
28472
  id: string;
28040
28473
  name: string;
28041
28474
  } | null> | null;
28475
+ links?: Array<{
28476
+ __typename?: 'LinkReference';
28477
+ uri?: any | null;
28478
+ linkType?: LinkTypes | null;
28479
+ excerpts?: string | null;
28480
+ } | null> | null;
28481
+ workflow?: {
28482
+ __typename?: 'Workflow';
28483
+ id: string;
28484
+ name: string;
28485
+ } | null;
28042
28486
  } | null;
28043
28487
  };
28044
28488
  export type QueryMedicalTestsQueryVariables = Exact<{
@@ -28054,6 +28498,7 @@ export type QueryMedicalTestsQuery = {
28054
28498
  id: string;
28055
28499
  name: string;
28056
28500
  creationDate: any;
28501
+ modifiedDate?: any | null;
28057
28502
  relevance?: number | null;
28058
28503
  state: EntityState;
28059
28504
  alternateNames?: Array<string | null> | null;
@@ -28070,6 +28515,17 @@ export type QueryMedicalTestsQuery = {
28070
28515
  id: string;
28071
28516
  name: string;
28072
28517
  } | null> | null;
28518
+ links?: Array<{
28519
+ __typename?: 'LinkReference';
28520
+ uri?: any | null;
28521
+ linkType?: LinkTypes | null;
28522
+ excerpts?: string | null;
28523
+ } | null> | null;
28524
+ workflow?: {
28525
+ __typename?: 'Workflow';
28526
+ id: string;
28527
+ name: string;
28528
+ } | null;
28073
28529
  } | null> | null;
28074
28530
  } | null;
28075
28531
  };
@@ -28153,6 +28609,7 @@ export type GetMedicalTherapyQuery = {
28153
28609
  id: string;
28154
28610
  name: string;
28155
28611
  creationDate: any;
28612
+ modifiedDate?: any | null;
28156
28613
  state: EntityState;
28157
28614
  alternateNames?: Array<string | null> | null;
28158
28615
  uri?: any | null;
@@ -28168,6 +28625,17 @@ export type GetMedicalTherapyQuery = {
28168
28625
  id: string;
28169
28626
  name: string;
28170
28627
  } | null> | null;
28628
+ links?: Array<{
28629
+ __typename?: 'LinkReference';
28630
+ uri?: any | null;
28631
+ linkType?: LinkTypes | null;
28632
+ excerpts?: string | null;
28633
+ } | null> | null;
28634
+ workflow?: {
28635
+ __typename?: 'Workflow';
28636
+ id: string;
28637
+ name: string;
28638
+ } | null;
28171
28639
  } | null;
28172
28640
  };
28173
28641
  export type QueryMedicalTherapiesQueryVariables = Exact<{
@@ -28183,6 +28651,7 @@ export type QueryMedicalTherapiesQuery = {
28183
28651
  id: string;
28184
28652
  name: string;
28185
28653
  creationDate: any;
28654
+ modifiedDate?: any | null;
28186
28655
  relevance?: number | null;
28187
28656
  state: EntityState;
28188
28657
  alternateNames?: Array<string | null> | null;
@@ -28199,6 +28668,17 @@ export type QueryMedicalTherapiesQuery = {
28199
28668
  id: string;
28200
28669
  name: string;
28201
28670
  } | null> | null;
28671
+ links?: Array<{
28672
+ __typename?: 'LinkReference';
28673
+ uri?: any | null;
28674
+ linkType?: LinkTypes | null;
28675
+ excerpts?: string | null;
28676
+ } | null> | null;
28677
+ workflow?: {
28678
+ __typename?: 'Workflow';
28679
+ id: string;
28680
+ name: string;
28681
+ } | null;
28202
28682
  } | null> | null;
28203
28683
  } | null;
28204
28684
  };
@@ -28340,6 +28820,7 @@ export type GetOrganizationQuery = {
28340
28820
  id: string;
28341
28821
  name: string;
28342
28822
  creationDate: any;
28823
+ modifiedDate?: any | null;
28343
28824
  state: EntityState;
28344
28825
  alternateNames?: Array<string | null> | null;
28345
28826
  uri?: any | null;
@@ -28347,6 +28828,9 @@ export type GetOrganizationQuery = {
28347
28828
  identifier?: string | null;
28348
28829
  thing?: string | null;
28349
28830
  foundingDate?: any | null;
28831
+ email?: string | null;
28832
+ telephone?: string | null;
28833
+ legalName?: string | null;
28350
28834
  industries?: Array<string | null> | null;
28351
28835
  revenue?: any | null;
28352
28836
  revenueCurrency?: string | null;
@@ -28361,6 +28845,17 @@ export type GetOrganizationQuery = {
28361
28845
  id: string;
28362
28846
  name: string;
28363
28847
  } | null> | null;
28848
+ links?: Array<{
28849
+ __typename?: 'LinkReference';
28850
+ uri?: any | null;
28851
+ linkType?: LinkTypes | null;
28852
+ excerpts?: string | null;
28853
+ } | null> | null;
28854
+ workflow?: {
28855
+ __typename?: 'Workflow';
28856
+ id: string;
28857
+ name: string;
28858
+ } | null;
28364
28859
  address?: {
28365
28860
  __typename?: 'Address';
28366
28861
  streetAddress?: string | null;
@@ -28384,6 +28879,7 @@ export type QueryOrganizationsQuery = {
28384
28879
  id: string;
28385
28880
  name: string;
28386
28881
  creationDate: any;
28882
+ modifiedDate?: any | null;
28387
28883
  relevance?: number | null;
28388
28884
  state: EntityState;
28389
28885
  alternateNames?: Array<string | null> | null;
@@ -28392,6 +28888,9 @@ export type QueryOrganizationsQuery = {
28392
28888
  identifier?: string | null;
28393
28889
  thing?: string | null;
28394
28890
  foundingDate?: any | null;
28891
+ email?: string | null;
28892
+ telephone?: string | null;
28893
+ legalName?: string | null;
28395
28894
  industries?: Array<string | null> | null;
28396
28895
  revenue?: any | null;
28397
28896
  revenueCurrency?: string | null;
@@ -28406,6 +28905,17 @@ export type QueryOrganizationsQuery = {
28406
28905
  id: string;
28407
28906
  name: string;
28408
28907
  } | null> | null;
28908
+ links?: Array<{
28909
+ __typename?: 'LinkReference';
28910
+ uri?: any | null;
28911
+ linkType?: LinkTypes | null;
28912
+ excerpts?: string | null;
28913
+ } | null> | null;
28914
+ workflow?: {
28915
+ __typename?: 'Workflow';
28916
+ id: string;
28917
+ name: string;
28918
+ } | null;
28409
28919
  address?: {
28410
28920
  __typename?: 'Address';
28411
28921
  streetAddress?: string | null;
@@ -28510,6 +29020,7 @@ export type GetPersonQuery = {
28510
29020
  id: string;
28511
29021
  name: string;
28512
29022
  creationDate: any;
29023
+ modifiedDate?: any | null;
28513
29024
  state: EntityState;
28514
29025
  alternateNames?: Array<string | null> | null;
28515
29026
  uri?: any | null;
@@ -28533,6 +29044,17 @@ export type GetPersonQuery = {
28533
29044
  id: string;
28534
29045
  name: string;
28535
29046
  } | null> | null;
29047
+ links?: Array<{
29048
+ __typename?: 'LinkReference';
29049
+ uri?: any | null;
29050
+ linkType?: LinkTypes | null;
29051
+ excerpts?: string | null;
29052
+ } | null> | null;
29053
+ workflow?: {
29054
+ __typename?: 'Workflow';
29055
+ id: string;
29056
+ name: string;
29057
+ } | null;
28536
29058
  address?: {
28537
29059
  __typename?: 'Address';
28538
29060
  streetAddress?: string | null;
@@ -28556,6 +29078,7 @@ export type QueryPersonsQuery = {
28556
29078
  id: string;
28557
29079
  name: string;
28558
29080
  creationDate: any;
29081
+ modifiedDate?: any | null;
28559
29082
  relevance?: number | null;
28560
29083
  state: EntityState;
28561
29084
  alternateNames?: Array<string | null> | null;
@@ -28580,6 +29103,17 @@ export type QueryPersonsQuery = {
28580
29103
  id: string;
28581
29104
  name: string;
28582
29105
  } | null> | null;
29106
+ links?: Array<{
29107
+ __typename?: 'LinkReference';
29108
+ uri?: any | null;
29109
+ linkType?: LinkTypes | null;
29110
+ excerpts?: string | null;
29111
+ } | null> | null;
29112
+ workflow?: {
29113
+ __typename?: 'Workflow';
29114
+ id: string;
29115
+ name: string;
29116
+ } | null;
28583
29117
  address?: {
28584
29118
  __typename?: 'Address';
28585
29119
  streetAddress?: string | null;
@@ -28684,12 +29218,16 @@ export type GetPlaceQuery = {
28684
29218
  id: string;
28685
29219
  name: string;
28686
29220
  creationDate: any;
29221
+ modifiedDate?: any | null;
28687
29222
  state: EntityState;
28688
29223
  alternateNames?: Array<string | null> | null;
28689
29224
  uri?: any | null;
28690
29225
  description?: string | null;
28691
29226
  identifier?: string | null;
28692
29227
  thing?: string | null;
29228
+ telephone?: string | null;
29229
+ openingHours?: string | null;
29230
+ priceRange?: string | null;
28693
29231
  owner: {
28694
29232
  __typename?: 'Owner';
28695
29233
  id: string;
@@ -28699,6 +29237,17 @@ export type GetPlaceQuery = {
28699
29237
  id: string;
28700
29238
  name: string;
28701
29239
  } | null> | null;
29240
+ links?: Array<{
29241
+ __typename?: 'LinkReference';
29242
+ uri?: any | null;
29243
+ linkType?: LinkTypes | null;
29244
+ excerpts?: string | null;
29245
+ } | null> | null;
29246
+ workflow?: {
29247
+ __typename?: 'Workflow';
29248
+ id: string;
29249
+ name: string;
29250
+ } | null;
28702
29251
  address?: {
28703
29252
  __typename?: 'Address';
28704
29253
  streetAddress?: string | null;
@@ -28722,6 +29271,7 @@ export type QueryPlacesQuery = {
28722
29271
  id: string;
28723
29272
  name: string;
28724
29273
  creationDate: any;
29274
+ modifiedDate?: any | null;
28725
29275
  relevance?: number | null;
28726
29276
  state: EntityState;
28727
29277
  alternateNames?: Array<string | null> | null;
@@ -28729,6 +29279,9 @@ export type QueryPlacesQuery = {
28729
29279
  description?: string | null;
28730
29280
  identifier?: string | null;
28731
29281
  thing?: string | null;
29282
+ telephone?: string | null;
29283
+ openingHours?: string | null;
29284
+ priceRange?: string | null;
28732
29285
  owner: {
28733
29286
  __typename?: 'Owner';
28734
29287
  id: string;
@@ -28738,6 +29291,17 @@ export type QueryPlacesQuery = {
28738
29291
  id: string;
28739
29292
  name: string;
28740
29293
  } | null> | null;
29294
+ links?: Array<{
29295
+ __typename?: 'LinkReference';
29296
+ uri?: any | null;
29297
+ linkType?: LinkTypes | null;
29298
+ excerpts?: string | null;
29299
+ } | null> | null;
29300
+ workflow?: {
29301
+ __typename?: 'Workflow';
29302
+ id: string;
29303
+ name: string;
29304
+ } | null;
28741
29305
  address?: {
28742
29306
  __typename?: 'Address';
28743
29307
  streetAddress?: string | null;
@@ -28842,6 +29406,7 @@ export type GetProductQuery = {
28842
29406
  id: string;
28843
29407
  name: string;
28844
29408
  creationDate: any;
29409
+ modifiedDate?: any | null;
28845
29410
  state: EntityState;
28846
29411
  alternateNames?: Array<string | null> | null;
28847
29412
  uri?: any | null;
@@ -28853,6 +29418,8 @@ export type GetProductQuery = {
28853
29418
  brand?: string | null;
28854
29419
  upc?: string | null;
28855
29420
  sku?: string | null;
29421
+ gtin?: string | null;
29422
+ mpn?: string | null;
28856
29423
  releaseDate?: any | null;
28857
29424
  productionDate?: any | null;
28858
29425
  owner: {
@@ -28864,6 +29431,17 @@ export type GetProductQuery = {
28864
29431
  id: string;
28865
29432
  name: string;
28866
29433
  } | null> | null;
29434
+ links?: Array<{
29435
+ __typename?: 'LinkReference';
29436
+ uri?: any | null;
29437
+ linkType?: LinkTypes | null;
29438
+ excerpts?: string | null;
29439
+ } | null> | null;
29440
+ workflow?: {
29441
+ __typename?: 'Workflow';
29442
+ id: string;
29443
+ name: string;
29444
+ } | null;
28867
29445
  address?: {
28868
29446
  __typename?: 'Address';
28869
29447
  streetAddress?: string | null;
@@ -28887,6 +29465,7 @@ export type QueryProductsQuery = {
28887
29465
  id: string;
28888
29466
  name: string;
28889
29467
  creationDate: any;
29468
+ modifiedDate?: any | null;
28890
29469
  relevance?: number | null;
28891
29470
  state: EntityState;
28892
29471
  alternateNames?: Array<string | null> | null;
@@ -28899,6 +29478,8 @@ export type QueryProductsQuery = {
28899
29478
  brand?: string | null;
28900
29479
  upc?: string | null;
28901
29480
  sku?: string | null;
29481
+ gtin?: string | null;
29482
+ mpn?: string | null;
28902
29483
  releaseDate?: any | null;
28903
29484
  productionDate?: any | null;
28904
29485
  owner: {
@@ -28910,6 +29491,17 @@ export type QueryProductsQuery = {
28910
29491
  id: string;
28911
29492
  name: string;
28912
29493
  } | null> | null;
29494
+ links?: Array<{
29495
+ __typename?: 'LinkReference';
29496
+ uri?: any | null;
29497
+ linkType?: LinkTypes | null;
29498
+ excerpts?: string | null;
29499
+ } | null> | null;
29500
+ workflow?: {
29501
+ __typename?: 'Workflow';
29502
+ id: string;
29503
+ name: string;
29504
+ } | null;
28913
29505
  address?: {
28914
29506
  __typename?: 'Address';
28915
29507
  streetAddress?: string | null;
@@ -29228,6 +29820,7 @@ export type GetRepoQuery = {
29228
29820
  id: string;
29229
29821
  name: string;
29230
29822
  creationDate: any;
29823
+ modifiedDate?: any | null;
29231
29824
  state: EntityState;
29232
29825
  alternateNames?: Array<string | null> | null;
29233
29826
  uri?: any | null;
@@ -29243,6 +29836,17 @@ export type GetRepoQuery = {
29243
29836
  id: string;
29244
29837
  name: string;
29245
29838
  } | null> | null;
29839
+ links?: Array<{
29840
+ __typename?: 'LinkReference';
29841
+ uri?: any | null;
29842
+ linkType?: LinkTypes | null;
29843
+ excerpts?: string | null;
29844
+ } | null> | null;
29845
+ workflow?: {
29846
+ __typename?: 'Workflow';
29847
+ id: string;
29848
+ name: string;
29849
+ } | null;
29246
29850
  } | null;
29247
29851
  };
29248
29852
  export type QueryReposQueryVariables = Exact<{
@@ -29258,6 +29862,7 @@ export type QueryReposQuery = {
29258
29862
  id: string;
29259
29863
  name: string;
29260
29864
  creationDate: any;
29865
+ modifiedDate?: any | null;
29261
29866
  relevance?: number | null;
29262
29867
  state: EntityState;
29263
29868
  alternateNames?: Array<string | null> | null;
@@ -29274,6 +29879,17 @@ export type QueryReposQuery = {
29274
29879
  id: string;
29275
29880
  name: string;
29276
29881
  } | null> | null;
29882
+ links?: Array<{
29883
+ __typename?: 'LinkReference';
29884
+ uri?: any | null;
29885
+ linkType?: LinkTypes | null;
29886
+ excerpts?: string | null;
29887
+ } | null> | null;
29888
+ workflow?: {
29889
+ __typename?: 'Workflow';
29890
+ id: string;
29891
+ name: string;
29892
+ } | null;
29277
29893
  } | null> | null;
29278
29894
  } | null;
29279
29895
  };
@@ -29389,6 +30005,7 @@ export type GetSoftwareQuery = {
29389
30005
  id: string;
29390
30006
  name: string;
29391
30007
  creationDate: any;
30008
+ modifiedDate?: any | null;
29392
30009
  state: EntityState;
29393
30010
  alternateNames?: Array<string | null> | null;
29394
30011
  uri?: any | null;
@@ -29406,6 +30023,17 @@ export type GetSoftwareQuery = {
29406
30023
  id: string;
29407
30024
  name: string;
29408
30025
  } | null> | null;
30026
+ links?: Array<{
30027
+ __typename?: 'LinkReference';
30028
+ uri?: any | null;
30029
+ linkType?: LinkTypes | null;
30030
+ excerpts?: string | null;
30031
+ } | null> | null;
30032
+ workflow?: {
30033
+ __typename?: 'Workflow';
30034
+ id: string;
30035
+ name: string;
30036
+ } | null;
29409
30037
  } | null;
29410
30038
  };
29411
30039
  export type QuerySoftwaresQueryVariables = Exact<{
@@ -29421,6 +30049,7 @@ export type QuerySoftwaresQuery = {
29421
30049
  id: string;
29422
30050
  name: string;
29423
30051
  creationDate: any;
30052
+ modifiedDate?: any | null;
29424
30053
  relevance?: number | null;
29425
30054
  state: EntityState;
29426
30055
  alternateNames?: Array<string | null> | null;
@@ -29439,6 +30068,17 @@ export type QuerySoftwaresQuery = {
29439
30068
  id: string;
29440
30069
  name: string;
29441
30070
  } | null> | null;
30071
+ links?: Array<{
30072
+ __typename?: 'LinkReference';
30073
+ uri?: any | null;
30074
+ linkType?: LinkTypes | null;
30075
+ excerpts?: string | null;
30076
+ } | null> | null;
30077
+ workflow?: {
30078
+ __typename?: 'Workflow';
30079
+ id: string;
30080
+ name: string;
30081
+ } | null;
29442
30082
  } | null> | null;
29443
30083
  } | null;
29444
30084
  };
@@ -29525,6 +30165,7 @@ export type GetSpecificationQuery = {
29525
30165
  id: string;
29526
30166
  name: string;
29527
30167
  creationDate: any;
30168
+ modifiedDate?: any | null;
29528
30169
  state: EntityState;
29529
30170
  type?: SpecificationTypes | null;
29530
30171
  serviceType?: ModelServiceTypes | null;
@@ -29947,6 +30588,7 @@ export type QuerySpecificationsQuery = {
29947
30588
  id: string;
29948
30589
  name: string;
29949
30590
  creationDate: any;
30591
+ modifiedDate?: any | null;
29950
30592
  relevance?: number | null;
29951
30593
  state: EntityState;
29952
30594
  type?: SpecificationTypes | null;
@@ -30272,6 +30914,7 @@ export type GetUserQuery = {
30272
30914
  id: string;
30273
30915
  name: string;
30274
30916
  creationDate: any;
30917
+ modifiedDate?: any | null;
30275
30918
  relevance?: number | null;
30276
30919
  state: EntityState;
30277
30920
  type?: UserTypes | null;
@@ -30355,6 +30998,7 @@ export type GetUserByIdentifierQuery = {
30355
30998
  id: string;
30356
30999
  name: string;
30357
31000
  creationDate: any;
31001
+ modifiedDate?: any | null;
30358
31002
  relevance?: number | null;
30359
31003
  state: EntityState;
30360
31004
  type?: UserTypes | null;
@@ -30441,6 +31085,7 @@ export type QueryUsersQuery = {
30441
31085
  id: string;
30442
31086
  name: string;
30443
31087
  creationDate: any;
31088
+ modifiedDate?: any | null;
30444
31089
  relevance?: number | null;
30445
31090
  state: EntityState;
30446
31091
  type?: UserTypes | null;
@@ -30835,6 +31480,7 @@ export type GetViewQuery = {
30835
31480
  id: string;
30836
31481
  name: string;
30837
31482
  creationDate: any;
31483
+ modifiedDate?: any | null;
30838
31484
  state: EntityState;
30839
31485
  type?: ViewTypes | null;
30840
31486
  owner: {
@@ -31090,6 +31736,7 @@ export type QueryViewsQuery = {
31090
31736
  id: string;
31091
31737
  name: string;
31092
31738
  creationDate: any;
31739
+ modifiedDate?: any | null;
31093
31740
  relevance?: number | null;
31094
31741
  state: EntityState;
31095
31742
  type?: ViewTypes | null;
@@ -32186,6 +32833,7 @@ export type GetWorkflowQuery = {
32186
32833
  id: string;
32187
32834
  name: string;
32188
32835
  creationDate: any;
32836
+ modifiedDate?: any | null;
32189
32837
  state: EntityState;
32190
32838
  owner: {
32191
32839
  __typename?: 'Owner';
@@ -32483,6 +33131,7 @@ export type QueryWorkflowsQuery = {
32483
33131
  id: string;
32484
33132
  name: string;
32485
33133
  creationDate: any;
33134
+ modifiedDate?: any | null;
32486
33135
  relevance?: number | null;
32487
33136
  state: EntityState;
32488
33137
  owner: {