graphlit-client 1.0.20251021001 → 1.0.20251023001
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.
|
@@ -160,6 +160,10 @@ export type AlertFilter = {
|
|
|
160
160
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
161
161
|
/** Limit the number of alert(s) to be returned. Defaults to 100. */
|
|
162
162
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
163
|
+
/** Filter alert(s) by their modified date range. */
|
|
164
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
165
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return alert(s) modified in the last 24 hours. */
|
|
166
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
163
167
|
/** Filter alert(s) by their name. */
|
|
164
168
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
165
169
|
/** Skip the specified number of alert(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -1447,6 +1451,10 @@ export type CategoryFilter = {
|
|
|
1447
1451
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1448
1452
|
/** Limit the number of category(s) to be returned. Defaults to 100. */
|
|
1449
1453
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1454
|
+
/** Filter category(s) by their modified date range. */
|
|
1455
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
1456
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return category(s) modified in the last 24 hours. */
|
|
1457
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
1450
1458
|
/** Filter category(s) by their name. */
|
|
1451
1459
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1452
1460
|
/** Skip the specified number of category(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -1700,6 +1708,10 @@ export type CollectionFilter = {
|
|
|
1700
1708
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1701
1709
|
/** Limit the number of collection(s) to be returned. Defaults to 100. */
|
|
1702
1710
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1711
|
+
/** Filter collection(s) by their modified date range. */
|
|
1712
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
1713
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return collection(s) modified in the last 24 hours. */
|
|
1714
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
1703
1715
|
/** Filter collection(s) by their name. */
|
|
1704
1716
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1705
1717
|
/** Skip the specified number of collection(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -1788,6 +1800,10 @@ export type ConnectorFilter = {
|
|
|
1788
1800
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1789
1801
|
/** Limit the number of connector(s) to be returned. Defaults to 100. */
|
|
1790
1802
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1803
|
+
/** Filter connector(s) by their modified date range. */
|
|
1804
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
1805
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return connector(s) modified in the last 24 hours. */
|
|
1806
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
1791
1807
|
/** Filter connector(s) by their name. */
|
|
1792
1808
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1793
1809
|
/** Skip the specified number of connector(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -2300,6 +2316,10 @@ export type ContentFilter = {
|
|
|
2300
2316
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2301
2317
|
/** Filter by geo-location. */
|
|
2302
2318
|
location?: InputMaybe<PointFilter>;
|
|
2319
|
+
/** Filter content(s) by their modified date range. */
|
|
2320
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
2321
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return content(s) modified in the last 24 hours. */
|
|
2322
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
2303
2323
|
/** Filter content(s) by their name. */
|
|
2304
2324
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2305
2325
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -2376,6 +2396,8 @@ export declare enum ContentIndexingServiceTypes {
|
|
|
2376
2396
|
}
|
|
2377
2397
|
/** Represents content. */
|
|
2378
2398
|
export type ContentInput = {
|
|
2399
|
+
/** The date when the content was created. */
|
|
2400
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2379
2401
|
/** The content description. */
|
|
2380
2402
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
2381
2403
|
/** The date when the file was created. */
|
|
@@ -2384,6 +2406,8 @@ export type ContentInput = {
|
|
|
2384
2406
|
fileModifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2385
2407
|
/** The content external identifier. */
|
|
2386
2408
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
2409
|
+
/** The date when the content was last modified. */
|
|
2410
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2387
2411
|
/** The name of the content. */
|
|
2388
2412
|
name: Scalars['String']['input'];
|
|
2389
2413
|
/** The content text. */
|
|
@@ -2547,6 +2571,8 @@ export type ContentUpdateInput = {
|
|
|
2547
2571
|
bullets?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2548
2572
|
/** The timestamped chapters summarized from the content transcript. */
|
|
2549
2573
|
chapters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2574
|
+
/** The date when the content was created. */
|
|
2575
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2550
2576
|
/** The custom content summary. */
|
|
2551
2577
|
customSummary?: InputMaybe<Scalars['String']['input']>;
|
|
2552
2578
|
/** The content description. */
|
|
@@ -2581,6 +2607,8 @@ export type ContentUpdateInput = {
|
|
|
2581
2607
|
language?: InputMaybe<LanguageMetadataInput>;
|
|
2582
2608
|
/** The content message metadata. */
|
|
2583
2609
|
message?: InputMaybe<MessageMetadataInput>;
|
|
2610
|
+
/** The date when the content was last modified. */
|
|
2611
|
+
modifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2584
2612
|
/** The name of the content. */
|
|
2585
2613
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2586
2614
|
/** The content package metadata. */
|
|
@@ -2714,6 +2742,10 @@ export type ConversationFilter = {
|
|
|
2714
2742
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2715
2743
|
/** Limit the number of conversation(s) to be returned. Defaults to 100. */
|
|
2716
2744
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2745
|
+
/** Filter conversation(s) by their modified date range. */
|
|
2746
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
2747
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return conversation(s) modified in the last 24 hours. */
|
|
2748
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
2717
2749
|
/** Filter conversation(s) by their name. */
|
|
2718
2750
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
2719
2751
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -4063,6 +4095,10 @@ export type EventFilter = {
|
|
|
4063
4095
|
maxPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4064
4096
|
/** Filter by the event minimum price. */
|
|
4065
4097
|
minPrice?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4098
|
+
/** Filter event(s) by their modified date range. */
|
|
4099
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
4100
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return event(s) modified in the last 24 hours. */
|
|
4101
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
4066
4102
|
/** Filter event(s) by their name. */
|
|
4067
4103
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4068
4104
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -4443,6 +4479,10 @@ export type FeedFilter = {
|
|
|
4443
4479
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4444
4480
|
/** Limit the number of feed(s) to be returned. Defaults to 100. */
|
|
4445
4481
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
4482
|
+
/** Filter feed(s) by their modified date range. */
|
|
4483
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
4484
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return feed(s) modified in the last 24 hours. */
|
|
4485
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
4446
4486
|
/** Filter feed(s) by their name. */
|
|
4447
4487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4448
4488
|
/** Skip the specified number of feed(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -6260,6 +6300,10 @@ export type LabelFilter = {
|
|
|
6260
6300
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
6261
6301
|
/** Limit the number of label(s) to be returned. Defaults to 100. */
|
|
6262
6302
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6303
|
+
/** Filter label(s) by their modified date range. */
|
|
6304
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
6305
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return label(s) modified in the last 24 hours. */
|
|
6306
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6263
6307
|
/** Filter label(s) by their name. */
|
|
6264
6308
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6265
6309
|
/** Skip the specified number of label(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -6649,6 +6693,10 @@ export type MedicalConditionFilter = {
|
|
|
6649
6693
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6650
6694
|
/** Filter by observable geo-location. */
|
|
6651
6695
|
location?: InputMaybe<PointFilter>;
|
|
6696
|
+
/** Filter medicalcondition(s) by their modified date range. */
|
|
6697
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
6698
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicalcondition(s) modified in the last 24 hours. */
|
|
6699
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6652
6700
|
/** Filter medicalcondition(s) by their name. */
|
|
6653
6701
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6654
6702
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -6792,6 +6840,10 @@ export type MedicalContraindicationFilter = {
|
|
|
6792
6840
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6793
6841
|
/** Filter by observable geo-location. */
|
|
6794
6842
|
location?: InputMaybe<PointFilter>;
|
|
6843
|
+
/** Filter medicalcontraindication(s) by their modified date range. */
|
|
6844
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
6845
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicalcontraindication(s) modified in the last 24 hours. */
|
|
6846
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6795
6847
|
/** Filter medicalcontraindication(s) by their name. */
|
|
6796
6848
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6797
6849
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -6935,6 +6987,10 @@ export type MedicalDeviceFilter = {
|
|
|
6935
6987
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
6936
6988
|
/** Filter by observable geo-location. */
|
|
6937
6989
|
location?: InputMaybe<PointFilter>;
|
|
6990
|
+
/** Filter medicaldevice(s) by their modified date range. */
|
|
6991
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
6992
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldevice(s) modified in the last 24 hours. */
|
|
6993
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
6938
6994
|
/** Filter medicaldevice(s) by their name. */
|
|
6939
6995
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6940
6996
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7114,6 +7170,10 @@ export type MedicalDrugClassFilter = {
|
|
|
7114
7170
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7115
7171
|
/** Filter by observable geo-location. */
|
|
7116
7172
|
location?: InputMaybe<PointFilter>;
|
|
7173
|
+
/** Filter medicaldrugclass(s) by their modified date range. */
|
|
7174
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
7175
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldrugclass(s) modified in the last 24 hours. */
|
|
7176
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7117
7177
|
/** Filter medicaldrugclass(s) by their name. */
|
|
7118
7178
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7119
7179
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7221,6 +7281,10 @@ export type MedicalDrugFilter = {
|
|
|
7221
7281
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7222
7282
|
/** Filter by observable geo-location. */
|
|
7223
7283
|
location?: InputMaybe<PointFilter>;
|
|
7284
|
+
/** Filter medicaldrug(s) by their modified date range. */
|
|
7285
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
7286
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicaldrug(s) modified in the last 24 hours. */
|
|
7287
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7224
7288
|
/** Filter medicaldrug(s) by their name. */
|
|
7225
7289
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7226
7290
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7364,6 +7428,10 @@ export type MedicalGuidelineFilter = {
|
|
|
7364
7428
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7365
7429
|
/** Filter by observable geo-location. */
|
|
7366
7430
|
location?: InputMaybe<PointFilter>;
|
|
7431
|
+
/** Filter medicalguideline(s) by their modified date range. */
|
|
7432
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
7433
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicalguideline(s) modified in the last 24 hours. */
|
|
7434
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7367
7435
|
/** Filter medicalguideline(s) by their name. */
|
|
7368
7436
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7369
7437
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7507,6 +7575,10 @@ export type MedicalIndicationFilter = {
|
|
|
7507
7575
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7508
7576
|
/** Filter by observable geo-location. */
|
|
7509
7577
|
location?: InputMaybe<PointFilter>;
|
|
7578
|
+
/** Filter medicalindication(s) by their modified date range. */
|
|
7579
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
7580
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicalindication(s) modified in the last 24 hours. */
|
|
7581
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7510
7582
|
/** Filter medicalindication(s) by their name. */
|
|
7511
7583
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7512
7584
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7650,6 +7722,10 @@ export type MedicalProcedureFilter = {
|
|
|
7650
7722
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7651
7723
|
/** Filter by observable geo-location. */
|
|
7652
7724
|
location?: InputMaybe<PointFilter>;
|
|
7725
|
+
/** Filter medicalprocedure(s) by their modified date range. */
|
|
7726
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
7727
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicalprocedure(s) modified in the last 24 hours. */
|
|
7728
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7653
7729
|
/** Filter medicalprocedure(s) by their name. */
|
|
7654
7730
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7655
7731
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7795,6 +7871,10 @@ export type MedicalStudyFilter = {
|
|
|
7795
7871
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7796
7872
|
/** Filter by observable geo-location. */
|
|
7797
7873
|
location?: InputMaybe<PointFilter>;
|
|
7874
|
+
/** Filter medicalstudy(s) by their modified date range. */
|
|
7875
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
7876
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicalstudy(s) modified in the last 24 hours. */
|
|
7877
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7798
7878
|
/** Filter medicalstudy(s) by their name. */
|
|
7799
7879
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7800
7880
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -7944,6 +8024,10 @@ export type MedicalTestFilter = {
|
|
|
7944
8024
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
7945
8025
|
/** Filter by observable geo-location. */
|
|
7946
8026
|
location?: InputMaybe<PointFilter>;
|
|
8027
|
+
/** Filter medicaltest(s) by their modified date range. */
|
|
8028
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
8029
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicaltest(s) modified in the last 24 hours. */
|
|
8030
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
7947
8031
|
/** Filter medicaltest(s) by their name. */
|
|
7948
8032
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
7949
8033
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -8087,6 +8171,10 @@ export type MedicalTherapyFilter = {
|
|
|
8087
8171
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8088
8172
|
/** Filter by observable geo-location. */
|
|
8089
8173
|
location?: InputMaybe<PointFilter>;
|
|
8174
|
+
/** Filter medicaltherapy(s) by their modified date range. */
|
|
8175
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
8176
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return medicaltherapy(s) modified in the last 24 hours. */
|
|
8177
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
8090
8178
|
/** Filter medicaltherapy(s) by their name. */
|
|
8091
8179
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
8092
8180
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -8237,6 +8325,10 @@ export type MetadataFilter = {
|
|
|
8237
8325
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
8238
8326
|
/** Filter by metadata types. */
|
|
8239
8327
|
metadataTypes?: InputMaybe<Array<MetadataTypes>>;
|
|
8328
|
+
/** Filter metadata(s) by their modified date range. */
|
|
8329
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
8330
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return metadata(s) modified in the last 24 hours. */
|
|
8331
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
8240
8332
|
/** Filter metadata(s) by their name. */
|
|
8241
8333
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
8242
8334
|
/** Skip the specified number of metadata(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -11030,6 +11122,10 @@ export type OrganizationFilter = {
|
|
|
11030
11122
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
11031
11123
|
/** Filter by observable geo-location. */
|
|
11032
11124
|
location?: InputMaybe<PointFilter>;
|
|
11125
|
+
/** Filter organization(s) by their modified date range. */
|
|
11126
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
11127
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return organization(s) modified in the last 24 hours. */
|
|
11128
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11033
11129
|
/** Filter organization(s) by their name. */
|
|
11034
11130
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11035
11131
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -11288,6 +11384,10 @@ export type PersonFilter = {
|
|
|
11288
11384
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
11289
11385
|
/** Filter by observable geo-location. */
|
|
11290
11386
|
location?: InputMaybe<PointFilter>;
|
|
11387
|
+
/** Filter person(s) by their modified date range. */
|
|
11388
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
11389
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return person(s) modified in the last 24 hours. */
|
|
11390
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11291
11391
|
/** Filter person(s) by their name. */
|
|
11292
11392
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11293
11393
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -11498,6 +11598,10 @@ export type PlaceFilter = {
|
|
|
11498
11598
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
11499
11599
|
/** Filter by observable geo-location. */
|
|
11500
11600
|
location?: InputMaybe<PointFilter>;
|
|
11601
|
+
/** Filter place(s) by their modified date range. */
|
|
11602
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
11603
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return place(s) modified in the last 24 hours. */
|
|
11604
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11501
11605
|
/** Filter place(s) by their name. */
|
|
11502
11606
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11503
11607
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -11799,6 +11903,10 @@ export type ProductFilter = {
|
|
|
11799
11903
|
manufacturer?: InputMaybe<Scalars['String']['input']>;
|
|
11800
11904
|
/** Filter by product model. */
|
|
11801
11905
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
11906
|
+
/** Filter product(s) by their modified date range. */
|
|
11907
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
11908
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return product(s) modified in the last 24 hours. */
|
|
11909
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11802
11910
|
/** Filter product(s) by their name. */
|
|
11803
11911
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11804
11912
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -11990,6 +12098,10 @@ export type ProjectFilter = {
|
|
|
11990
12098
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
11991
12099
|
/** Limit the number of project(s) to be returned. Defaults to 100. */
|
|
11992
12100
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
12101
|
+
/** Filter project(s) by their modified date range. */
|
|
12102
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
12103
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return project(s) modified in the last 24 hours. */
|
|
12104
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
11993
12105
|
/** Filter project(s) by their name. */
|
|
11994
12106
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11995
12107
|
/** Skip the specified number of project(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -13531,6 +13643,10 @@ export type RepoFilter = {
|
|
|
13531
13643
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
13532
13644
|
/** Filter by observable geo-location. */
|
|
13533
13645
|
location?: InputMaybe<PointFilter>;
|
|
13646
|
+
/** Filter repo(s) by their modified date range. */
|
|
13647
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
13648
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return repo(s) modified in the last 24 hours. */
|
|
13649
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
13534
13650
|
/** Filter repo(s) by their name. */
|
|
13535
13651
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
13536
13652
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -14181,6 +14297,10 @@ export type SoftwareFilter = {
|
|
|
14181
14297
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
14182
14298
|
/** Filter by observable geo-location. */
|
|
14183
14299
|
location?: InputMaybe<PointFilter>;
|
|
14300
|
+
/** Filter software(s) by their modified date range. */
|
|
14301
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
14302
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return software(s) modified in the last 24 hours. */
|
|
14303
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
14184
14304
|
/** Filter software(s) by their name. */
|
|
14185
14305
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
14186
14306
|
/** When using similarity search, the number of similar items to be returned. Defaults to 100. */
|
|
@@ -14328,6 +14448,10 @@ export type SpecificationFilter = {
|
|
|
14328
14448
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
14329
14449
|
/** Limit the number of specification(s) to be returned. Defaults to 100. */
|
|
14330
14450
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
14451
|
+
/** Filter specification(s) by their modified date range. */
|
|
14452
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
14453
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return specification(s) modified in the last 24 hours. */
|
|
14454
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
14331
14455
|
/** Filter specification(s) by their name. */
|
|
14332
14456
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
14333
14457
|
/** Skip the specified number of specification(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -15018,6 +15142,10 @@ export type UserFilter = {
|
|
|
15018
15142
|
identifier?: InputMaybe<Scalars['String']['input']>;
|
|
15019
15143
|
/** Limit the number of user(s) to be returned. Defaults to 100. */
|
|
15020
15144
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15145
|
+
/** Filter user(s) by their modified date range. */
|
|
15146
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
15147
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return user(s) modified in the last 24 hours. */
|
|
15148
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
15021
15149
|
/** Filter user(s) by their name. */
|
|
15022
15150
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15023
15151
|
/** Skip the specified number of user(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -15158,6 +15286,10 @@ export type ViewFilter = {
|
|
|
15158
15286
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
15159
15287
|
/** Limit the number of view(s) to be returned. Defaults to 100. */
|
|
15160
15288
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15289
|
+
/** Filter view(s) by their modified date range. */
|
|
15290
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
15291
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return view(s) modified in the last 24 hours. */
|
|
15292
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
15161
15293
|
/** Filter view(s) by their name. */
|
|
15162
15294
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15163
15295
|
/** Skip the specified number of view(s) from the beginning of the result set. Only supported on keyword search. */
|
|
@@ -15376,6 +15508,10 @@ export type WorkflowFilter = {
|
|
|
15376
15508
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
15377
15509
|
/** Limit the number of workflow(s) to be returned. Defaults to 100. */
|
|
15378
15510
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15511
|
+
/** Filter workflow(s) by their modified date range. */
|
|
15512
|
+
modifiedDateRange?: InputMaybe<DateRangeFilter>;
|
|
15513
|
+
/** Filter by modified date recent timespan. For example, a timespan of one day will return workflow(s) modified in the last 24 hours. */
|
|
15514
|
+
modifiedInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
|
|
15379
15515
|
/** Filter workflow(s) by their name. */
|
|
15380
15516
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15381
15517
|
/** Skip the specified number of workflow(s) from the beginning of the result set. Only supported on keyword search. */
|