graphlit-client 1.0.20251123001 → 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 = {
@@ -19067,6 +19187,7 @@ export type GetContentQuery = {
19067
19187
  __typename?: 'LinkReference';
19068
19188
  uri?: any | null;
19069
19189
  linkType?: LinkTypes | null;
19190
+ excerpts?: string | null;
19070
19191
  }> | null;
19071
19192
  observations?: Array<{
19072
19193
  __typename?: 'Observation';
@@ -20002,6 +20123,7 @@ export type LookupContentsQuery = {
20002
20123
  __typename?: 'LinkReference';
20003
20124
  uri?: any | null;
20004
20125
  linkType?: LinkTypes | null;
20126
+ excerpts?: string | null;
20005
20127
  }> | null;
20006
20128
  observations?: Array<{
20007
20129
  __typename?: 'Observation';
@@ -25101,6 +25223,10 @@ export type GetEventQuery = {
25101
25223
  priceCurrency?: string | null;
25102
25224
  isAccessibleForFree?: boolean | null;
25103
25225
  typicalAgeRange?: string | null;
25226
+ organizer?: string | null;
25227
+ performer?: string | null;
25228
+ sponsor?: string | null;
25229
+ eventStatus?: string | null;
25104
25230
  owner: {
25105
25231
  __typename?: 'Owner';
25106
25232
  id: string;
@@ -25110,6 +25236,17 @@ export type GetEventQuery = {
25110
25236
  id: string;
25111
25237
  name: string;
25112
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;
25113
25250
  address?: {
25114
25251
  __typename?: 'Address';
25115
25252
  streetAddress?: string | null;
@@ -25151,6 +25288,10 @@ export type QueryEventsQuery = {
25151
25288
  priceCurrency?: string | null;
25152
25289
  isAccessibleForFree?: boolean | null;
25153
25290
  typicalAgeRange?: string | null;
25291
+ organizer?: string | null;
25292
+ performer?: string | null;
25293
+ sponsor?: string | null;
25294
+ eventStatus?: string | null;
25154
25295
  owner: {
25155
25296
  __typename?: 'Owner';
25156
25297
  id: string;
@@ -25160,6 +25301,17 @@ export type QueryEventsQuery = {
25160
25301
  id: string;
25161
25302
  name: string;
25162
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;
25163
25315
  address?: {
25164
25316
  __typename?: 'Address';
25165
25317
  streetAddress?: string | null;
@@ -26499,6 +26651,17 @@ export type GetInvestmentQuery = {
26499
26651
  id: string;
26500
26652
  name: string;
26501
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;
26502
26665
  } | null;
26503
26666
  };
26504
26667
  export type QueryInvestmentsQueryVariables = Exact<{
@@ -26531,6 +26694,17 @@ export type QueryInvestmentsQuery = {
26531
26694
  id: string;
26532
26695
  name: string;
26533
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;
26534
26708
  } | null> | null;
26535
26709
  } | null;
26536
26710
  };
@@ -26630,6 +26804,17 @@ export type GetInvestmentFundQuery = {
26630
26804
  id: string;
26631
26805
  name: string;
26632
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;
26633
26818
  } | null;
26634
26819
  };
26635
26820
  export type QueryInvestmentFundsQueryVariables = Exact<{
@@ -26662,6 +26847,17 @@ export type QueryInvestmentFundsQuery = {
26662
26847
  id: string;
26663
26848
  name: string;
26664
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;
26665
26861
  } | null> | null;
26666
26862
  } | null;
26667
26863
  };
@@ -26883,6 +27079,17 @@ export type GetMedicalConditionQuery = {
26883
27079
  id: string;
26884
27080
  name: string;
26885
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;
26886
27093
  } | null;
26887
27094
  };
26888
27095
  export type QueryMedicalConditionsQueryVariables = Exact<{
@@ -26915,6 +27122,17 @@ export type QueryMedicalConditionsQuery = {
26915
27122
  id: string;
26916
27123
  name: string;
26917
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;
26918
27136
  } | null> | null;
26919
27137
  } | null;
26920
27138
  };
@@ -27014,6 +27232,17 @@ export type GetMedicalContraindicationQuery = {
27014
27232
  id: string;
27015
27233
  name: string;
27016
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;
27017
27246
  } | null;
27018
27247
  };
27019
27248
  export type QueryMedicalContraindicationsQueryVariables = Exact<{
@@ -27046,6 +27275,17 @@ export type QueryMedicalContraindicationsQuery = {
27046
27275
  id: string;
27047
27276
  name: string;
27048
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;
27049
27289
  } | null> | null;
27050
27290
  } | null;
27051
27291
  };
@@ -27145,6 +27385,17 @@ export type GetMedicalDeviceQuery = {
27145
27385
  id: string;
27146
27386
  name: string;
27147
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;
27148
27399
  } | null;
27149
27400
  };
27150
27401
  export type QueryMedicalDevicesQueryVariables = Exact<{
@@ -27177,6 +27428,17 @@ export type QueryMedicalDevicesQuery = {
27177
27428
  id: string;
27178
27429
  name: string;
27179
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;
27180
27442
  } | null> | null;
27181
27443
  } | null;
27182
27444
  };
@@ -27276,6 +27538,17 @@ export type GetMedicalDrugQuery = {
27276
27538
  id: string;
27277
27539
  name: string;
27278
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;
27279
27552
  } | null;
27280
27553
  };
27281
27554
  export type QueryMedicalDrugsQueryVariables = Exact<{
@@ -27308,6 +27581,17 @@ export type QueryMedicalDrugsQuery = {
27308
27581
  id: string;
27309
27582
  name: string;
27310
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;
27311
27595
  } | null> | null;
27312
27596
  } | null;
27313
27597
  };
@@ -27407,6 +27691,17 @@ export type GetMedicalDrugClassQuery = {
27407
27691
  id: string;
27408
27692
  name: string;
27409
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;
27410
27705
  } | null;
27411
27706
  };
27412
27707
  export type QueryMedicalDrugClassesQueryVariables = Exact<{
@@ -27439,6 +27734,17 @@ export type QueryMedicalDrugClassesQuery = {
27439
27734
  id: string;
27440
27735
  name: string;
27441
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;
27442
27748
  } | null> | null;
27443
27749
  } | null;
27444
27750
  };
@@ -27538,6 +27844,17 @@ export type GetMedicalGuidelineQuery = {
27538
27844
  id: string;
27539
27845
  name: string;
27540
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;
27541
27858
  } | null;
27542
27859
  };
27543
27860
  export type QueryMedicalGuidelinesQueryVariables = Exact<{
@@ -27570,6 +27887,17 @@ export type QueryMedicalGuidelinesQuery = {
27570
27887
  id: string;
27571
27888
  name: string;
27572
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;
27573
27901
  } | null> | null;
27574
27902
  } | null;
27575
27903
  };
@@ -27669,6 +27997,17 @@ export type GetMedicalIndicationQuery = {
27669
27997
  id: string;
27670
27998
  name: string;
27671
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;
27672
28011
  } | null;
27673
28012
  };
27674
28013
  export type QueryMedicalIndicationsQueryVariables = Exact<{
@@ -27701,6 +28040,17 @@ export type QueryMedicalIndicationsQuery = {
27701
28040
  id: string;
27702
28041
  name: string;
27703
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;
27704
28054
  } | null> | null;
27705
28055
  } | null;
27706
28056
  };
@@ -27800,6 +28150,17 @@ export type GetMedicalProcedureQuery = {
27800
28150
  id: string;
27801
28151
  name: string;
27802
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;
27803
28164
  } | null;
27804
28165
  };
27805
28166
  export type QueryMedicalProceduresQueryVariables = Exact<{
@@ -27832,6 +28193,17 @@ export type QueryMedicalProceduresQuery = {
27832
28193
  id: string;
27833
28194
  name: string;
27834
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;
27835
28207
  } | null> | null;
27836
28208
  } | null;
27837
28209
  };
@@ -27931,6 +28303,17 @@ export type GetMedicalStudyQuery = {
27931
28303
  id: string;
27932
28304
  name: string;
27933
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;
27934
28317
  address?: {
27935
28318
  __typename?: 'Address';
27936
28319
  streetAddress?: string | null;
@@ -27971,6 +28354,17 @@ export type QueryMedicalStudiesQuery = {
27971
28354
  id: string;
27972
28355
  name: string;
27973
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;
27974
28368
  address?: {
27975
28369
  __typename?: 'Address';
27976
28370
  streetAddress?: string | null;
@@ -28078,6 +28472,17 @@ export type GetMedicalTestQuery = {
28078
28472
  id: string;
28079
28473
  name: string;
28080
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;
28081
28486
  } | null;
28082
28487
  };
28083
28488
  export type QueryMedicalTestsQueryVariables = Exact<{
@@ -28110,6 +28515,17 @@ export type QueryMedicalTestsQuery = {
28110
28515
  id: string;
28111
28516
  name: string;
28112
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;
28113
28529
  } | null> | null;
28114
28530
  } | null;
28115
28531
  };
@@ -28209,6 +28625,17 @@ export type GetMedicalTherapyQuery = {
28209
28625
  id: string;
28210
28626
  name: string;
28211
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;
28212
28639
  } | null;
28213
28640
  };
28214
28641
  export type QueryMedicalTherapiesQueryVariables = Exact<{
@@ -28241,6 +28668,17 @@ export type QueryMedicalTherapiesQuery = {
28241
28668
  id: string;
28242
28669
  name: string;
28243
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;
28244
28682
  } | null> | null;
28245
28683
  } | null;
28246
28684
  };
@@ -28390,6 +28828,9 @@ export type GetOrganizationQuery = {
28390
28828
  identifier?: string | null;
28391
28829
  thing?: string | null;
28392
28830
  foundingDate?: any | null;
28831
+ email?: string | null;
28832
+ telephone?: string | null;
28833
+ legalName?: string | null;
28393
28834
  industries?: Array<string | null> | null;
28394
28835
  revenue?: any | null;
28395
28836
  revenueCurrency?: string | null;
@@ -28404,6 +28845,17 @@ export type GetOrganizationQuery = {
28404
28845
  id: string;
28405
28846
  name: string;
28406
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;
28407
28859
  address?: {
28408
28860
  __typename?: 'Address';
28409
28861
  streetAddress?: string | null;
@@ -28436,6 +28888,9 @@ export type QueryOrganizationsQuery = {
28436
28888
  identifier?: string | null;
28437
28889
  thing?: string | null;
28438
28890
  foundingDate?: any | null;
28891
+ email?: string | null;
28892
+ telephone?: string | null;
28893
+ legalName?: string | null;
28439
28894
  industries?: Array<string | null> | null;
28440
28895
  revenue?: any | null;
28441
28896
  revenueCurrency?: string | null;
@@ -28450,6 +28905,17 @@ export type QueryOrganizationsQuery = {
28450
28905
  id: string;
28451
28906
  name: string;
28452
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;
28453
28919
  address?: {
28454
28920
  __typename?: 'Address';
28455
28921
  streetAddress?: string | null;
@@ -28578,6 +29044,17 @@ export type GetPersonQuery = {
28578
29044
  id: string;
28579
29045
  name: string;
28580
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;
28581
29058
  address?: {
28582
29059
  __typename?: 'Address';
28583
29060
  streetAddress?: string | null;
@@ -28626,6 +29103,17 @@ export type QueryPersonsQuery = {
28626
29103
  id: string;
28627
29104
  name: string;
28628
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;
28629
29117
  address?: {
28630
29118
  __typename?: 'Address';
28631
29119
  streetAddress?: string | null;
@@ -28737,6 +29225,9 @@ export type GetPlaceQuery = {
28737
29225
  description?: string | null;
28738
29226
  identifier?: string | null;
28739
29227
  thing?: string | null;
29228
+ telephone?: string | null;
29229
+ openingHours?: string | null;
29230
+ priceRange?: string | null;
28740
29231
  owner: {
28741
29232
  __typename?: 'Owner';
28742
29233
  id: string;
@@ -28746,6 +29237,17 @@ export type GetPlaceQuery = {
28746
29237
  id: string;
28747
29238
  name: string;
28748
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;
28749
29251
  address?: {
28750
29252
  __typename?: 'Address';
28751
29253
  streetAddress?: string | null;
@@ -28777,6 +29279,9 @@ export type QueryPlacesQuery = {
28777
29279
  description?: string | null;
28778
29280
  identifier?: string | null;
28779
29281
  thing?: string | null;
29282
+ telephone?: string | null;
29283
+ openingHours?: string | null;
29284
+ priceRange?: string | null;
28780
29285
  owner: {
28781
29286
  __typename?: 'Owner';
28782
29287
  id: string;
@@ -28786,6 +29291,17 @@ export type QueryPlacesQuery = {
28786
29291
  id: string;
28787
29292
  name: string;
28788
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;
28789
29305
  address?: {
28790
29306
  __typename?: 'Address';
28791
29307
  streetAddress?: string | null;
@@ -28902,6 +29418,8 @@ export type GetProductQuery = {
28902
29418
  brand?: string | null;
28903
29419
  upc?: string | null;
28904
29420
  sku?: string | null;
29421
+ gtin?: string | null;
29422
+ mpn?: string | null;
28905
29423
  releaseDate?: any | null;
28906
29424
  productionDate?: any | null;
28907
29425
  owner: {
@@ -28913,6 +29431,17 @@ export type GetProductQuery = {
28913
29431
  id: string;
28914
29432
  name: string;
28915
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;
28916
29445
  address?: {
28917
29446
  __typename?: 'Address';
28918
29447
  streetAddress?: string | null;
@@ -28949,6 +29478,8 @@ export type QueryProductsQuery = {
28949
29478
  brand?: string | null;
28950
29479
  upc?: string | null;
28951
29480
  sku?: string | null;
29481
+ gtin?: string | null;
29482
+ mpn?: string | null;
28952
29483
  releaseDate?: any | null;
28953
29484
  productionDate?: any | null;
28954
29485
  owner: {
@@ -28960,6 +29491,17 @@ export type QueryProductsQuery = {
28960
29491
  id: string;
28961
29492
  name: string;
28962
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;
28963
29505
  address?: {
28964
29506
  __typename?: 'Address';
28965
29507
  streetAddress?: string | null;
@@ -29294,6 +29836,17 @@ export type GetRepoQuery = {
29294
29836
  id: string;
29295
29837
  name: string;
29296
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;
29297
29850
  } | null;
29298
29851
  };
29299
29852
  export type QueryReposQueryVariables = Exact<{
@@ -29326,6 +29879,17 @@ export type QueryReposQuery = {
29326
29879
  id: string;
29327
29880
  name: string;
29328
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;
29329
29893
  } | null> | null;
29330
29894
  } | null;
29331
29895
  };
@@ -29459,6 +30023,17 @@ export type GetSoftwareQuery = {
29459
30023
  id: string;
29460
30024
  name: string;
29461
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;
29462
30037
  } | null;
29463
30038
  };
29464
30039
  export type QuerySoftwaresQueryVariables = Exact<{
@@ -29493,6 +30068,17 @@ export type QuerySoftwaresQuery = {
29493
30068
  id: string;
29494
30069
  name: string;
29495
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;
29496
30082
  } | null> | null;
29497
30083
  } | null;
29498
30084
  };