@salesforce/lds-adapters-graphql 1.125.0 → 1.127.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.
|
@@ -2102,7 +2102,7 @@ const graphQLAdapterFactory = (luvio) => {
|
|
|
2102
2102
|
return null;
|
|
2103
2103
|
}
|
|
2104
2104
|
const { query, variables, useUiApiAdapter } = validatedConfig;
|
|
2105
|
-
if (useUiApiAdapter ===
|
|
2105
|
+
if (useUiApiAdapter === true) {
|
|
2106
2106
|
// Forward to new adapters
|
|
2107
2107
|
const resolvedQuery = astResolver(query);
|
|
2108
2108
|
if (resolvedQuery === undefined) {
|
|
@@ -4,7 +4,7 @@ import type { GraphQLVariables } from '../type/Variable';
|
|
|
4
4
|
export declare const DEFAULT_GRAPHQL_TTL = 30000;
|
|
5
5
|
export declare const GRAPHQL_INGEST_VERSION = "GRAPHQL_INGEST_VERSION_1";
|
|
6
6
|
type LuvioIngestableNode = LuvioOperationDefinitionNode | LuvioSelectionObjectFieldNode | LuvioSelectionCustomFieldNode;
|
|
7
|
-
export declare function createIngest(ast: LuvioIngestableNode, variables: GraphQLVariables): import("@luvio/engine").ResourceIngest | ((data: any, path: IngestPath
|
|
7
|
+
export declare function createIngest(ast: LuvioIngestableNode, variables: GraphQLVariables): import("@luvio/engine").ResourceIngest | ((data: any, path: IngestPath, luvio: Luvio, store: Store, timestamp: number) => {
|
|
8
8
|
__ref: string | import("@luvio/engine").NormalizedKeyMetadata;
|
|
9
9
|
});
|
|
10
10
|
export declare function publishDataIfChanged(params: {
|
package/package.json
CHANGED
package/sfdc/index.js
CHANGED
|
@@ -2111,7 +2111,7 @@ const graphQLAdapterFactory = (luvio) => {
|
|
|
2111
2111
|
return null;
|
|
2112
2112
|
}
|
|
2113
2113
|
const { query, variables, useUiApiAdapter } = validatedConfig;
|
|
2114
|
-
if (useUiApiAdapter ===
|
|
2114
|
+
if (useUiApiAdapter === true) {
|
|
2115
2115
|
// Forward to new adapters
|
|
2116
2116
|
const resolvedQuery = astResolver(query);
|
|
2117
2117
|
if (resolvedQuery === undefined) {
|
|
@@ -2177,4 +2177,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2177
2177
|
});
|
|
2178
2178
|
|
|
2179
2179
|
export { graphQL, graphQLImperative, unstable_graphQL_imperative };
|
|
2180
|
-
// version: 1.
|
|
2180
|
+
// version: 1.127.0-0b8563139
|