@salesforce/lds-adapters-uiapi 1.279.0 → 1.280.0

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.
@@ -7,7 +7,11 @@ import type { DraftAwareCreateContentVersionAdapter } from './wire/createContent
7
7
  import type { DraftAwareCreateRecordAdapter } from './wire/createRecord/configurationTypes';
8
8
  import type { DraftAwareUpdateRecordAdapter } from './wire/updateRecord/configurationTypes';
9
9
  import type { DraftAwareDeleteRecordAdapter } from './wire/deleteRecord/configurationTypes';
10
+ import type { GraphqlBatchConfig } from './wire/graphqlBatch';
11
+ import type { GraphQLBatchRepresentation } from './wire/graphqlBatch/postGraphqlBatch';
12
+ import type { BuildSnapshotContext as BatchBuildSnapshotContext } from './wire/graphqlBatch';
10
13
  export type DraftAwareGraphQLAdapter = (config: GraphqlConfig, buildCachedSnapshotCachePolicy: (context: BuildSnapshotContext, storeLookup: StoreLookup<GraphQLRepresentation, unknown>) => Snapshot<GraphQLRepresentation, any>, buildNetworkSnapshotCachePolicy: (context: BuildSnapshotContext, coercedAdapterRequestContext: CoercedAdapterRequestContext) => Promise<Snapshot<GraphQLRepresentation, any>>, requestContext?: AdapterRequestContext) => Promise<AvailableSnapshot<GraphQLRepresentation>>;
14
+ export type EnvironmentAwareGraphQLBatchAdapter = (config: GraphqlBatchConfig, buildCachedSnapshotCachePolicy: (context: BatchBuildSnapshotContext, storeLookup: StoreLookup<GraphQLBatchRepresentation, unknown>) => Snapshot<GraphQLBatchRepresentation, any>, buildNetworkSnapshotCachePolicy: (context: BatchBuildSnapshotContext, coercedAdapterRequestContext: CoercedAdapterRequestContext) => Promise<Snapshot<GraphQLBatchRepresentation, any>>, requestContext?: AdapterRequestContext) => Promise<AvailableSnapshot<GraphQLBatchRepresentation>>;
11
15
  /**
12
16
  * Defines the configuration API and is exposed internally as well as externally.
13
17
  * Configuration for REST adapters only.
@@ -39,6 +43,8 @@ export declare const configurationForRestAdapters: {
39
43
  export declare const configurationForGraphQLAdapters: {
40
44
  setDraftAwareGraphQLAdapter: (adapter: DraftAwareGraphQLAdapter) => void;
41
45
  getDraftAwareGraphQLAdapter: () => DraftAwareGraphQLAdapter | undefined;
46
+ setEnvironmentAwareGraphQLBatchAdapter: (adapter: EnvironmentAwareGraphQLBatchAdapter) => void;
47
+ getEnvironmentAwareGraphQLBatchAdapter: () => EnvironmentAwareGraphQLBatchAdapter | undefined;
42
48
  };
43
49
  /**
44
50
  * Note: configuration isn't shared across REST and GraphQL adapters
@@ -42,6 +42,7 @@ export type { PerformActionInputRepresentation } from './generated/types/Perform
42
42
  export type { RecordInputRepresentation } from './generated/types/RecordInputRepresentation';
43
43
  export type { GraphQLRepresentation, GraphQLRepresentationData, } from './generated/types/GraphQLRepresentation';
44
44
  export type { GraphQLBatchRepresentation } from './wire/graphqlBatch/postGraphqlBatch';
45
+ export type { GraphqlBatchConfig } from './wire/graphqlBatch';
45
46
  export type { GraphQLInputRepresentation } from './generated/types/GraphQLInputRepresentation';
46
47
  export type { GraphqlConfig as GraphQLConfig, BuildSnapshotContext as GraphQLBuildSnapshotContext, } from './generated/adapters/graphql';
47
48
  export * from './generated/artifacts/main';
@@ -75,11 +76,13 @@ export { RecordRepresentationQueryEvaluator, InMemoryRecordRepresentationQueryEv
75
76
  export { createRecordInputFilteredByEditedFields, generateRecordInputForCreate, generateRecordInputForUpdate, getFieldDisplayValue, getRecordInput, getFieldValue, } from './uiapi-static-functions';
76
77
  export { buildSelectionFromFields, buildSelectionFromRecord } from './selectors/record';
77
78
  export { createFieldsIngestSuccess as getRecordResourceIngest } from './generated/fields/resources/getUiApiRecordsByRecordId';
78
- export type { DraftAwareGraphQLAdapter } from './configuration';
79
+ export type { DraftAwareGraphQLAdapter, EnvironmentAwareGraphQLBatchAdapter, } from './configuration';
79
80
  export type Configuration = ConfigurationForRestAdapters & ConfigurationForGraphQLAdapters;
80
81
  export declare const configuration: {
81
82
  setDraftAwareGraphQLAdapter: (adapter: import("./configuration").DraftAwareGraphQLAdapter) => void;
82
83
  getDraftAwareGraphQLAdapter: () => import("./configuration").DraftAwareGraphQLAdapter | undefined;
84
+ setEnvironmentAwareGraphQLBatchAdapter: (adapter: import("./configuration").EnvironmentAwareGraphQLBatchAdapter) => void;
85
+ getEnvironmentAwareGraphQLBatchAdapter: () => import("./configuration").EnvironmentAwareGraphQLBatchAdapter | undefined;
83
86
  setTrackedFieldDepthOnCacheMiss: (trackedFieldDepthOnCacheMissParam: number) => void;
84
87
  getTrackedFieldDepthOnCacheMiss: () => number;
85
88
  setTrackedFieldDepthOnCacheMergeConflict: (trackedFieldDepthOnCacheMergeConflictParam: number) => void;
@@ -12,6 +12,10 @@ import { getRequestedFieldsForType, buildFieldState, buildQueryTypeStringKey, se
12
12
  /**
13
13
  * Defines configuration for the module with a default value which can be overridden by the runtime environment.
14
14
  */
15
+ /**
16
+ * Environment Aware GraphQLBatch adapter
17
+ */
18
+ let environmentAwareGraphQLBatchAdapter = undefined;
15
19
  /**
16
20
  * Draft-aware GraphQL adapter
17
21
  */
@@ -138,6 +142,12 @@ const configurationForGraphQLAdapters = {
138
142
  getDraftAwareGraphQLAdapter: function () {
139
143
  return draftAwareGraphQLAdapter;
140
144
  },
145
+ setEnvironmentAwareGraphQLBatchAdapter: function (adapter) {
146
+ environmentAwareGraphQLBatchAdapter = adapter;
147
+ },
148
+ getEnvironmentAwareGraphQLBatchAdapter: function () {
149
+ return environmentAwareGraphQLBatchAdapter;
150
+ },
141
151
  };
142
152
  const registrations = new Set();
143
153
  /**
@@ -49391,6 +49401,11 @@ const factory$g = (luvio) => function UiApi__graphqlBatch(untrustedConfig, reque
49391
49401
  if (config === null) {
49392
49402
  return null;
49393
49403
  }
49404
+ const { getEnvironmentAwareGraphQLBatchAdapter } = configurationForGraphQLAdapters;
49405
+ const adapter = getEnvironmentAwareGraphQLBatchAdapter();
49406
+ if (adapter !== undefined) {
49407
+ return adapter(config, buildCachedSnapshotCachePolicy$5, buildNetworkSnapshotCachePolicy$6, requestContext);
49408
+ }
49394
49409
  return luvio.applyCachePolicy(requestContext || {}, { config, luvio }, // BuildSnapshotContext
49395
49410
  buildCachedSnapshotCachePolicy$5, buildNetworkSnapshotCachePolicy$6);
49396
49411
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-uiapi",
3
- "version": "1.279.0",
3
+ "version": "1.280.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "Wire adapters for record related UI API endpoints",
6
6
  "main": "dist/es/es2018/uiapi-records-service.js",
@@ -68,14 +68,14 @@
68
68
  }
69
69
  },
70
70
  "dependencies": {
71
- "@salesforce/lds-bindings": "^1.279.0",
72
- "@salesforce/lds-default-luvio": "^1.279.0"
71
+ "@salesforce/lds-bindings": "^1.280.0",
72
+ "@salesforce/lds-default-luvio": "^1.280.0"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@databases/sqlite": "^3.0.0",
76
- "@salesforce/lds-compiler-plugins": "^1.279.0",
77
- "@salesforce/lds-jest": "^1.279.0",
78
- "@salesforce/lds-store-binary": "^1.279.0"
76
+ "@salesforce/lds-compiler-plugins": "^1.280.0",
77
+ "@salesforce/lds-jest": "^1.280.0",
78
+ "@salesforce/lds-store-binary": "^1.280.0"
79
79
  },
80
80
  "luvioBundlesize": [
81
81
  {
@@ -90,7 +90,7 @@
90
90
  "path": "./sfdc/graphqlAdapters.js",
91
91
  "maxSize": {
92
92
  "none": "740 kB",
93
- "min": "280 kB",
93
+ "min": "285 kB",
94
94
  "compressed": "39 kB"
95
95
  }
96
96
  }
@@ -16925,6 +16925,10 @@ function buildCachedSnapshotCachePolicy$1(context, storeLookup) {
16925
16925
  /**
16926
16926
  * Defines configuration for the module with a default value which can be overridden by the runtime environment.
16927
16927
  */
16928
+ /**
16929
+ * Environment Aware GraphQLBatch adapter
16930
+ */
16931
+ let environmentAwareGraphQLBatchAdapter = undefined;
16928
16932
  /**
16929
16933
  * Draft-aware GraphQL adapter
16930
16934
  */
@@ -17051,6 +17055,12 @@ const configurationForGraphQLAdapters = {
17051
17055
  getDraftAwareGraphQLAdapter: function () {
17052
17056
  return draftAwareGraphQLAdapter;
17053
17057
  },
17058
+ setEnvironmentAwareGraphQLBatchAdapter: function (adapter) {
17059
+ environmentAwareGraphQLBatchAdapter = adapter;
17060
+ },
17061
+ getEnvironmentAwareGraphQLBatchAdapter: function () {
17062
+ return environmentAwareGraphQLBatchAdapter;
17063
+ },
17054
17064
  };
17055
17065
  const registrations = new Set();
17056
17066
  /**
@@ -17449,6 +17459,11 @@ const factory = (luvio) => function UiApi__graphqlBatch(untrustedConfig, request
17449
17459
  if (config === null) {
17450
17460
  return null;
17451
17461
  }
17462
+ const { getEnvironmentAwareGraphQLBatchAdapter } = configurationForGraphQLAdapters;
17463
+ const adapter = getEnvironmentAwareGraphQLBatchAdapter();
17464
+ if (adapter !== undefined) {
17465
+ return adapter(config, buildCachedSnapshotCachePolicy, buildNetworkSnapshotCachePolicy, requestContext);
17466
+ }
17452
17467
  return luvio.applyCachePolicy(requestContext || {}, { config, luvio }, // BuildSnapshotContext
17453
17468
  buildCachedSnapshotCachePolicy, buildNetworkSnapshotCachePolicy);
17454
17469
  };
@@ -18068,4 +18083,4 @@ register({
18068
18083
  });
18069
18084
 
18070
18085
  export { configurationForGraphQLAdapters as configuration, graphql, factory$1 as graphqlAdapterFactory, graphqlBatch, graphqlBatch_imperative, graphql_imperative };
18071
- // version: 1.279.0-5933c6c0c
18086
+ // version: 1.280.0-09f980816
package/sfdc/index.js CHANGED
@@ -60,6 +60,10 @@ function throttle(invokeLimit, timeLimit, fn, options) {
60
60
  /**
61
61
  * Defines configuration for the module with a default value which can be overridden by the runtime environment.
62
62
  */
63
+ /**
64
+ * Environment Aware GraphQLBatch adapter
65
+ */
66
+ let environmentAwareGraphQLBatchAdapter = undefined;
63
67
  /**
64
68
  * Draft-aware GraphQL adapter
65
69
  */
@@ -186,6 +190,12 @@ const configurationForGraphQLAdapters = {
186
190
  getDraftAwareGraphQLAdapter: function () {
187
191
  return draftAwareGraphQLAdapter;
188
192
  },
193
+ setEnvironmentAwareGraphQLBatchAdapter: function (adapter) {
194
+ environmentAwareGraphQLBatchAdapter = adapter;
195
+ },
196
+ getEnvironmentAwareGraphQLBatchAdapter: function () {
197
+ return environmentAwareGraphQLBatchAdapter;
198
+ },
189
199
  };
190
200
  const registrations = new Set();
191
201
  /**
@@ -36881,4 +36891,4 @@ withDefaultLuvio((luvio) => {
36881
36891
  });
36882
36892
 
36883
36893
  export { API_NAMESPACE, InMemoryRecordRepresentationQueryEvaluator, MRU, RepresentationType$I as ObjectInfoDirectoryEntryRepresentationType, RepresentationType$N as ObjectInfoRepresentationType, RECORD_FIELDS_KEY_JUNCTION, RECORD_ID_PREFIX, RECORD_REPRESENTATION_NAME, RECORD_VIEW_ENTITY_ID_PREFIX, RECORD_VIEW_ENTITY_REPRESENTATION_NAME, RepresentationType$U as RecordRepresentationRepresentationType, TTL$y as RecordRepresentationTTL, RepresentationType$U as RecordRepresentationType, VERSION$1a as RecordRepresentationVersion, keyPrefix as UiApiNamespace, buildRecordRepKeyFromId, getFieldApiNamesArray as coerceFieldIdArray, configurationForRestAdapters as configuration, createContentDocumentAndVersion, createContentVersion, createIngestRecordWithFields, createLDSAdapterWithPrediction, createListInfo, createRecord, deleteListInfo, deleteRecord, executeBatchRecordOperations, extractRecordIdFromStoreKey, getActionOverrides, getActionOverrides_imperative, getAllApps, getAllApps_imperative, getAppDetails, getAppDetails_imperative, getDuplicateConfiguration, getDuplicateConfiguration_imperative, getDuplicates, getDuplicates_imperative, getFlexipageFormulaOverrides, getFlexipageFormulaOverrides_imperative, getGlobalActions, getGlobalActions_imperative, getKeywordSearchResults, getKeywordSearchResults_imperative, getLayout, getLayoutUserState, getLayoutUserState_imperative, getLayout_imperative, getListInfoByName, getListInfoByName_imperative, getListInfosByName, getListInfosByName_imperative, getListInfosByObjectName, getListInfosByObjectName_imperative, getListObjectInfo, getListObjectInfo_imperative, getListPreferences, getListPreferences_imperative, getListRecordsByName, getListRecordsByName_imperative, getListUi, getListUi_imperative, getLookupActions, getLookupActions_imperative, getLookupMetadata, getLookupMetadata_imperative, getLookupRecords, getLookupRecords_imperative, getNavItems, getNavItems_imperative, getObjectCreateActions, getObjectCreateActions_imperative, getObjectInfo, getObjectInfoAdapterFactory, getObjectInfoDirectoryAdapterFactory, getObjectInfo_imperative, getObjectInfos, getObjectInfosAdapterFactory, getObjectInfos_imperative, getPathLayout, getPathLayout_imperative, getPicklistValues, getPicklistValuesByRecordType, getPicklistValuesByRecordType_imperative, getPicklistValues_imperative, getQuickActionDefaults, getQuickActionDefaults_imperative, getQuickActionLayout, getQuickActionLayout_imperative, getRecord, getRecordActions, getRecordActionsAdapterFactory, getRecordActions_imperative, factory$f as getRecordAdapterFactory, getRecordAvatars, getRecordAvatarsAdapterFactory, getRecordAvatars_imperative, getRecordCreateDefaults, getRecordCreateDefaults_imperative, getRecordEditActions, getRecordEditActions_imperative, getRecordId18, getRecordNotifyChange, getRecordTemplateClone, getRecordTemplateClone_imperative, getRecordTemplateCreate, getRecordTemplateCreate_imperative, getRecordUi, getRecordUi_imperative, getRecord_imperative, getRecords, getRecordsAdapterFactory, getRecords_imperative, getRelatedListActions, getRelatedListActions_imperative, getRelatedListCount, getRelatedListCount_imperative, getRelatedListInfo, getRelatedListInfoBatch, getRelatedListInfoBatchAdapterFactory, getRelatedListInfoBatch_imperative, getRelatedListInfo_imperative, getRelatedListPreferences, getRelatedListPreferencesBatch, getRelatedListPreferencesBatch_imperative, getRelatedListPreferences_imperative, getRelatedListRecordActions, getRelatedListRecordActions_imperative, getRelatedListRecords, getRelatedListRecordsAdapterFactory, getRelatedListRecordsBatch, getRelatedListRecordsBatchAdapterFactory, getRelatedListRecordsBatch_imperative, getRelatedListRecords_imperative, getRelatedListsActions, getRelatedListsActionsAdapterFactory, getRelatedListsActions_imperative, getRelatedListsCount, getRelatedListsCount_imperative, getRelatedListsInfo, getRelatedListsInfo_imperative, getResponseCacheKeys as getResponseCacheKeysContentDocumentCompositeRepresentation, getSearchFilterMetadata, getSearchFilterMetadata_imperative, getSearchFilterOptions, getSearchFilterOptions_imperative, getSearchResults, getSearchResults_imperative, getTypeCacheKeys$W as getTypeCacheKeysRecord, ingest as ingestContentDocumentCompositeRepresentation, ingest$G as ingestObjectInfo, ingest$A as ingestQuickActionExecutionRepresentation, ingest$N as ingestRecord, instrument, isStoreKeyRecordViewEntity, keyBuilder as keyBuilderContentDocumentCompositeRepresentation, keyBuilderFromType as keyBuilderFromTypeContentDocumentCompositeRepresentation, keyBuilderFromType$C as keyBuilderFromTypeRecordRepresentation, keyBuilder$1V as keyBuilderObjectInfo, keyBuilder$1O as keyBuilderQuickActionExecutionRepresentation, keyBuilder$26 as keyBuilderRecord, notifyAllListInfoSummaryUpdateAvailable, notifyAllListRecordUpdateAvailable, notifyListInfoSummaryUpdateAvailable, notifyListInfoUpdateAvailable, notifyListRecordCollectionUpdateAvailable, notifyListViewSummaryUpdateAvailable, notifyQuickActionDefaultsUpdateAvailable, notifyRecordUpdateAvailable, performQuickAction, performUpdateRecordQuickAction, refresh, registerPrefetcher, updateLayoutUserState, updateListInfoByName, updateListPreferences, updateRecord, updateRecordAvatar, updateRelatedListInfo, updateRelatedListPreferences };
36884
- // version: 1.279.0-5933c6c0c
36894
+ // version: 1.280.0-09f980816
@@ -49,6 +49,7 @@ type StringAggregate implements FieldValue {
49
49
 
50
50
  type Query {
51
51
  uiapi: UIAPI!
52
+ setup: Setup__Setup!
52
53
  }
53
54
 
54
55
  input EmailOperators {
@@ -191,6 +192,13 @@ input IdOperators {
191
192
  ninq: JoinInput
192
193
  }
193
194
 
195
+ input Setup__SetupOrderBy @generic {
196
+ orderableField: OrderByClause @fieldCategory
197
+ orderableGeolocationField: OrderByGeolocationClause @fieldCategory
198
+ orderableParentRelationship: Setup__SetupOrderBy @fieldCategory
199
+ orderablePolymorphicParentRelationship: Setup__SetupPolymorphicParentRelationshipRecordOrderBy @fieldCategory
200
+ }
201
+
194
202
  type LongAggregate implements FieldValue {
195
203
  value: Long
196
204
  displayValue: String
@@ -335,6 +343,11 @@ type MultiPicklistValue implements FieldValue {
335
343
  label: String
336
344
  }
337
345
 
346
+ type Setup__SetupEdge @generic {
347
+ node: Setup__EntityRepresentation
348
+ cursor: String!
349
+ }
350
+
338
351
  input DatePrimitiveOperators {
339
352
  eq: Date
340
353
  ne: Date
@@ -372,6 +385,43 @@ type ListColumn {
372
385
  sortable: Boolean
373
386
  }
374
387
 
388
+ type Setup__SetupQuery {
389
+ recordQuery(first: Int, after: String, where: Setup__SetupFilter, orderBy: Setup__SetupOrderBy, scope: String, upperBound: Int): Setup__SetupConnection @fieldCategory
390
+ }
391
+
392
+ type Setup__EntityRepresentation @generic {
393
+ Id: ID!
394
+ ApiName: String!
395
+ IntValue: IntValue @fieldCategory
396
+ StringValue: StringValue @fieldCategory
397
+ BooleanValue: BooleanValue @fieldCategory
398
+ IDValue: IDValue @fieldCategory
399
+ DateTimeValue: DateTimeValue @fieldCategory
400
+ TimeValue: TimeValue @fieldCategory
401
+ DateValue: DateValue @fieldCategory
402
+ TextAreaValue: TextAreaValue @fieldCategory
403
+ LongTextAreaValue: LongTextAreaValue @fieldCategory
404
+ RichTextAreaValue: RichTextAreaValue @fieldCategory
405
+ PhoneNumberValue: PhoneNumberValue @fieldCategory
406
+ EmailValue: EmailValue @fieldCategory
407
+ UrlValue: UrlValue @fieldCategory
408
+ EncryptedStringValue: EncryptedStringValue @fieldCategory
409
+ CurrencyValue: CurrencyValue @fieldCategory
410
+ LongitudeValue: LongitudeValue @fieldCategory
411
+ LatitudeValue: LatitudeValue @fieldCategory
412
+ PicklistValue: PicklistValue @fieldCategory
413
+ MultiPicklistValue: MultiPicklistValue @fieldCategory
414
+ LongValue: LongValue @fieldCategory
415
+ DoubleValue: DoubleValue @fieldCategory
416
+ PercentValue: PercentValue @fieldCategory
417
+ Base64Value: Base64Value @fieldCategory
418
+ JSONValue: JSONValue @fieldCategory
419
+ parentRelationship: Setup__EntityRepresentation @fieldCategory
420
+ polymorphicParentRelationship: Setup__SetupPolymorphicParentRelationship @fieldCategory
421
+ childRelationship(first: Int, after: String, where: Setup__SetupFilter, orderBy: Setup__SetupOrderBy, upperBound: Int): Setup__SetupConnection @fieldCategory
422
+ CompoundField: CompoundField @fieldCategory
423
+ }
424
+
375
425
  type LatitudeAggregate implements FieldValue {
376
426
  value: Latitude
377
427
  displayValue: String
@@ -432,7 +482,7 @@ input AggregateOrderBy @generic {
432
482
  orderableGeolocationField: OrderByGeolocationClause @fieldCategory
433
483
  orderableParentRelationship: AggregateOrderBy @fieldCategory
434
484
  orderablePolymorphicParentRelationship: PolymorphicParentRelationshipOrderBy @fieldCategory
435
- type: String = ORDER_BY # Handrolled
485
+ type: String = ORDER_BY
436
486
  }
437
487
 
438
488
  input GroupByClause {
@@ -461,6 +511,8 @@ type RecordEdge @generic {
461
511
  cursor: String!
462
512
  }
463
513
 
514
+ union Setup__SetupPolymorphicParentRelationship @generic = Setup__EntityRepresentation
515
+
464
516
  type DateValue implements FieldValue {
465
517
  value: Date
466
518
  displayValue: String
@@ -533,6 +585,35 @@ type PhoneNumberValue implements FieldValue {
533
585
  # enum RecordScope @generic {
534
586
  # }
535
587
 
588
+ input Setup__SetupFilter @generic {
589
+ and: [Setup__SetupFilter]
590
+ or: [Setup__SetupFilter]
591
+ not: Setup__SetupFilter
592
+ parentRelationshipRecordFilter: Setup__SetupFilter @fieldCategory
593
+ polymorphicParentRelationshipRecordFilter: Setup__SetupPolymorphicParentRelationshipRecordFilter @fieldCategory
594
+ IntegerOperator: IntegerOperators @fieldCategory
595
+ LongOperator: LongOperators @fieldCategory
596
+ StringOperator: StringOperators @fieldCategory
597
+ DoubleOperator: DoubleOperators @fieldCategory
598
+ PercentOperator: PercentOperators @fieldCategory
599
+ LongitudeOperator: LongitudeOperators @fieldCategory
600
+ LatitudeOperator: LatitudeOperators @fieldCategory
601
+ EmailOperator: EmailOperators @fieldCategory
602
+ TextAreaOperator: TextAreaOperators @fieldCategory
603
+ LongTextAreaOperator: LongTextAreaOperators @fieldCategory
604
+ URLOperator: URLOperators @fieldCategory
605
+ PhoneNumberOperator: PhoneNumberOperators @fieldCategory
606
+ BooleanOperator: BooleanOperators @fieldCategory
607
+ Setup__IdOperator: Setup__IdOperators @fieldCategory
608
+ CurrencyOperator: CurrencyOperators @fieldCategory
609
+ TimeOperator: TimeOperators @fieldCategory
610
+ DateOperator: DateOperators @fieldCategory
611
+ DateTimeOperator: DateTimeOperators @fieldCategory
612
+ PicklistOperator: PicklistOperators @fieldCategory
613
+ MultiPicklistOperator: MultiPicklistOperators @fieldCategory
614
+ GeolocationOperator: GeolocationOperators @fieldCategory
615
+ }
616
+
536
617
  type DoubleAggregate implements FieldValue {
537
618
  value: Double
538
619
  displayValue: String
@@ -620,6 +701,10 @@ input PercentOperators {
620
701
  nin: [Percent]
621
702
  }
622
703
 
704
+ input Setup__SetupPolymorphicParentRelationshipRecordOrderBy @generic {
705
+ Setup__SetupOrderBy: Setup__SetupOrderBy @fieldCategory
706
+ }
707
+
623
708
  type DoubleValue implements FieldValue {
624
709
  value: Double
625
710
  displayValue: String
@@ -685,29 +770,29 @@ type UrlAggregate implements FieldValue {
685
770
  }
686
771
 
687
772
  enum DateLiteral {
688
- NEXT_QUARTER
689
- THIS_FISCAL_YEAR
690
- NEXT_FISCAL_YEAR
691
- THIS_WEEK
692
773
  LAST_YEAR
693
- NEXT_FISCAL_QUARTER
694
- THIS_MONTH
695
- THIS_YEAR
696
- LAST_FISCAL_YEAR
697
774
  LAST_WEEK
698
- LAST_90_DAYS
775
+ THIS_QUARTER
776
+ NEXT_FISCAL_YEAR
777
+ LAST_QUARTER
778
+ TOMORROW
779
+ NEXT_FISCAL_QUARTER
780
+ YESTERDAY
781
+ NEXT_QUARTER
699
782
  THIS_FISCAL_QUARTER
700
- NEXT_YEAR
783
+ THIS_WEEK
784
+ LAST_MONTH
785
+ LAST_90_DAYS
701
786
  NEXT_90_DAYS
702
- LAST_QUARTER
703
- LAST_FISCAL_QUARTER
787
+ THIS_FISCAL_YEAR
704
788
  NEXT_WEEK
705
789
  TODAY
706
- YESTERDAY
707
- LAST_MONTH
708
- TOMORROW
790
+ NEXT_YEAR
709
791
  NEXT_MONTH
710
- THIS_QUARTER
792
+ LAST_FISCAL_QUARTER
793
+ THIS_MONTH
794
+ LAST_FISCAL_YEAR
795
+ THIS_YEAR
711
796
  }
712
797
 
713
798
  type __EnumValue {
@@ -717,7 +802,7 @@ type __EnumValue {
717
802
  deprecationReason: String
718
803
  }
719
804
 
720
- type RecordRepresentation implements Record @generic{
805
+ type RecordRepresentation implements Record @generic {
721
806
  Id: ID!
722
807
  ApiName: String!
723
808
  WeakEtag: Long!
@@ -776,6 +861,19 @@ input OrderByGeolocationClause {
776
861
  nulls: NullOrder
777
862
  }
778
863
 
864
+ input Setup__IdOperators {
865
+ eq: ID
866
+ ne: ID
867
+ lt: ID
868
+ gt: ID
869
+ lte: ID
870
+ gte: ID
871
+ in: [ID]
872
+ nin: [ID]
873
+ inq: Setup__JoinInput
874
+ ninq: Setup__JoinInput
875
+ }
876
+
779
877
  enum NullsOrder {
780
878
  FIRST
781
879
  LAST
@@ -809,6 +907,11 @@ input RecordOrderBy @generic {
809
907
  orderablePolymorphicParentRelationship: PolymorphicParentRelationshipRecordOrderBy @fieldCategory
810
908
  }
811
909
 
910
+ input Setup__JoinInput {
911
+ Record: Setup__SetupFilter @fieldCategory
912
+ ApiName: String
913
+ }
914
+
812
915
  input PicklistOperators {
813
916
  eq: Picklist
814
917
  ne: Picklist
@@ -994,6 +1097,10 @@ type EmailValue implements FieldValue {
994
1097
  displayValue: String
995
1098
  }
996
1099
 
1100
+ type Setup__Setup {
1101
+ query: Setup__SetupQuery!
1102
+ }
1103
+
997
1104
  enum AggregateOrderByStringFunction {
998
1105
  COUNT
999
1106
  COUNT_DISTINCT
@@ -1045,6 +1152,13 @@ enum __TypeKind {
1045
1152
  NON_NULL
1046
1153
  }
1047
1154
 
1155
+ type Setup__SetupConnection @generic {
1156
+ edges: [Setup__SetupEdge]
1157
+ pageInfo: PageInfo!
1158
+ totalCount: Int!
1159
+ pageResultCount: Int!
1160
+ }
1161
+
1048
1162
  type PercentValue implements FieldValue {
1049
1163
  value: Percent
1050
1164
  displayValue: String
@@ -1087,7 +1201,7 @@ type BooleanAggregate implements FieldValue {
1087
1201
  }
1088
1202
 
1089
1203
  type RecordQueryAggregate {
1090
- # RecordScope is replaced with String
1204
+ # RecordScope is replaced with String
1091
1205
  recordQueryAggregate(first: Int, after: String, where: RecordFilter, orderBy: AggregateOrderBy, scope: String, groupBy: RecordGroupBy, upperBound: Int): RecordAggregateConnection @fieldCategory
1092
1206
  }
1093
1207
 
@@ -1095,6 +1209,7 @@ type RecordConnection @generic {
1095
1209
  edges: [RecordEdge]
1096
1210
  pageInfo: PageInfo!
1097
1211
  totalCount: Int!
1212
+ pageResultCount: Int!
1098
1213
  }
1099
1214
 
1100
1215
  type FilteredLookupInfo {
@@ -1311,6 +1426,10 @@ type __Schema {
1311
1426
  subscriptionType: __Type
1312
1427
  }
1313
1428
 
1429
+ input Setup__SetupPolymorphicParentRelationshipRecordFilter @generic {
1430
+ Setup__SetupFilter: Setup__SetupFilter @fieldCategory
1431
+ }
1432
+
1314
1433
  type CompoundField @generic {
1315
1434
  IntValue: IntValue @fieldCategory
1316
1435
  StringValue: StringValue @fieldCategory
@@ -1395,7 +1514,7 @@ type DateFunctionAggregation {
1395
1514
  }
1396
1515
 
1397
1516
  type RecordQuery {
1398
- # scope should be type RecordScope but that's empty enum.
1517
+ # scope should be type RecordScope but that's empty enum.
1399
1518
  recordQuery(first: Int, after: String, where: RecordFilter, orderBy: RecordOrderBy, scope: String, upperBound: Int): RecordConnection @fieldCategory
1400
1519
  }
1401
1520