apollo-client
Advanced tools
Comparing version
import { NormalizedCache } from './store'; | ||
import { SelectionSetWithRoot } from '../queries/store'; | ||
import { IdGetter } from './extensions'; | ||
import { SelectionSet, Document } from 'graphql'; | ||
@@ -10,9 +9,8 @@ export interface DiffResult { | ||
} | ||
export declare function diffQueryAgainstStore({store, query, variables, dataIdFromObject}: { | ||
export declare function diffQueryAgainstStore({store, query, variables}: { | ||
store: NormalizedCache; | ||
query: Document; | ||
variables?: Object; | ||
dataIdFromObject?: IdGetter; | ||
}): DiffResult; | ||
export declare function diffFragmentAgainstStore({store, fragment, rootId, variables, dataIdFromObject}: { | ||
export declare function diffFragmentAgainstStore({store, fragment, rootId, variables}: { | ||
store: NormalizedCache; | ||
@@ -22,5 +20,4 @@ fragment: Document; | ||
variables?: Object; | ||
dataIdFromObject?: IdGetter; | ||
}): DiffResult; | ||
export declare function diffSelectionSetAgainstStore({selectionSet, store, rootId, throwOnMissingField, variables, dataIdFromObject}: { | ||
export declare function diffSelectionSetAgainstStore({selectionSet, store, rootId, throwOnMissingField, variables}: { | ||
selectionSet: SelectionSet; | ||
@@ -31,3 +28,2 @@ store: NormalizedCache; | ||
variables: Object; | ||
dataIdFromObject?: IdGetter; | ||
}): DiffResult; |
@@ -10,3 +10,3 @@ "use strict"; | ||
function diffQueryAgainstStore(_a) { | ||
var store = _a.store, query = _a.query, variables = _a.variables, dataIdFromObject = _a.dataIdFromObject; | ||
var store = _a.store, query = _a.query, variables = _a.variables; | ||
var queryDef = getFromAST_1.getQueryDefinition(query); | ||
@@ -19,3 +19,2 @@ return diffSelectionSetAgainstStore({ | ||
variables: variables, | ||
dataIdFromObject: dataIdFromObject, | ||
}); | ||
@@ -25,3 +24,3 @@ } | ||
function diffFragmentAgainstStore(_a) { | ||
var store = _a.store, fragment = _a.fragment, rootId = _a.rootId, variables = _a.variables, dataIdFromObject = _a.dataIdFromObject; | ||
var store = _a.store, fragment = _a.fragment, rootId = _a.rootId, variables = _a.variables; | ||
var fragmentDef = getFromAST_1.getFragmentDefinition(fragment); | ||
@@ -34,3 +33,2 @@ return diffSelectionSetAgainstStore({ | ||
variables: variables, | ||
dataIdFromObject: dataIdFromObject, | ||
}); | ||
@@ -40,3 +38,3 @@ } | ||
function diffSelectionSetAgainstStore(_a) { | ||
var selectionSet = _a.selectionSet, store = _a.store, rootId = _a.rootId, _b = _a.throwOnMissingField, throwOnMissingField = _b === void 0 ? false : _b, variables = _a.variables, dataIdFromObject = _a.dataIdFromObject; | ||
var selectionSet = _a.selectionSet, store = _a.store, rootId = _a.rootId, _b = _a.throwOnMissingField, throwOnMissingField = _b === void 0 ? false : _b, variables = _a.variables; | ||
if (selectionSet.kind !== 'SelectionSet') { | ||
@@ -62,3 +60,2 @@ throw new Error('Must be a selection set.'); | ||
store: store, | ||
dataIdFromObject: dataIdFromObject, | ||
}), fieldResult = _a.result, fieldIsMissing = _a.isMissing; | ||
@@ -80,3 +77,2 @@ if (fieldIsMissing) { | ||
store: store, | ||
dataIdFromObject: dataIdFromObject, | ||
}), fieldResult = _b.result, fieldIsMissing = _b.isMissing; | ||
@@ -122,3 +118,3 @@ if (fieldIsMissing) { | ||
function diffFieldAgainstStore(_a) { | ||
var field = _a.field, throwOnMissingField = _a.throwOnMissingField, variables = _a.variables, rootId = _a.rootId, store = _a.store, dataIdFromObject = _a.dataIdFromObject; | ||
var field = _a.field, throwOnMissingField = _a.throwOnMissingField, variables = _a.variables, rootId = _a.rootId, store = _a.store; | ||
var storeObj = store[rootId] || {}; | ||
@@ -157,3 +153,2 @@ var storeFieldKey = storeUtils_1.storeKeyNameFromField(field, variables); | ||
variables: variables, | ||
dataIdFromObject: dataIdFromObject, | ||
}); | ||
@@ -177,3 +172,2 @@ if (itemDiffResult.isMissing) { | ||
variables: variables, | ||
dataIdFromObject: dataIdFromObject, | ||
}); | ||
@@ -180,0 +174,0 @@ } |
import { NetworkInterface, createNetworkInterface } from './networkInterface'; | ||
import { GraphQLResult, Document } from 'graphql'; | ||
import { createApolloStore, ApolloStore, createApolloReducer } from './store'; | ||
import { createApolloStore, ApolloStore, createApolloReducer, ApolloReducerConfig } from './store'; | ||
import { QueryManager, WatchQueryOptions, ObservableQuery } from './QueryManager'; | ||
import { readQueryFromStore, readFragmentFromStore } from './data/readFromStore'; | ||
import { IdGetter } from './data/extensions'; | ||
export { createNetworkInterface, createApolloStore, createApolloReducer, readQueryFromStore, readFragmentFromStore }; | ||
@@ -13,6 +14,8 @@ export default class ApolloClient { | ||
queryManager: QueryManager; | ||
constructor({networkInterface, reduxRootKey, initialState}?: { | ||
reducerConfig: ApolloReducerConfig; | ||
constructor({networkInterface, reduxRootKey, initialState, dataIdFromObject}?: { | ||
networkInterface?: NetworkInterface; | ||
reduxRootKey?: string; | ||
initialState?: any; | ||
dataIdFromObject?: IdGetter; | ||
}); | ||
@@ -19,0 +22,0 @@ watchQuery: (options: WatchQueryOptions) => ObservableQuery; |
@@ -15,3 +15,3 @@ "use strict"; | ||
var _this = this; | ||
var _b = _a === void 0 ? {} : _a, networkInterface = _b.networkInterface, reduxRootKey = _b.reduxRootKey, initialState = _b.initialState; | ||
var _b = _a === void 0 ? {} : _a, networkInterface = _b.networkInterface, reduxRootKey = _b.reduxRootKey, initialState = _b.initialState, dataIdFromObject = _b.dataIdFromObject; | ||
this.watchQuery = function (options) { | ||
@@ -54,5 +54,8 @@ _this.initStore(); | ||
networkInterface_1.createNetworkInterface('/graphql'); | ||
this.reducerConfig = { | ||
dataIdFromObject: dataIdFromObject, | ||
}; | ||
} | ||
ApolloClient.prototype.reducer = function () { | ||
return store_1.createApolloReducer({}); | ||
return store_1.createApolloReducer(this.reducerConfig); | ||
}; | ||
@@ -66,2 +69,3 @@ ApolloClient.prototype.initStore = function () { | ||
initialState: this.initialState, | ||
config: this.reducerConfig, | ||
})); | ||
@@ -68,0 +72,0 @@ }; |
{ | ||
"name": "apollo-client", | ||
"version": "0.3.6", | ||
"version": "0.3.7", | ||
"description": "A simple yet functional GraphQL client.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
import { NetworkInterface } from './networkInterface'; | ||
import { ApolloStore } from './store'; | ||
import { GraphQLResult, Document } from 'graphql'; | ||
import { IdGetter } from './data/extensions'; | ||
import { Observable, Observer, Subscription } from './util/Observable'; | ||
@@ -28,11 +27,9 @@ export declare class ObservableQuery extends Observable<GraphQLResult> { | ||
private reduxRootKey; | ||
private dataIdFromObject; | ||
private pollingTimer; | ||
private queryListeners; | ||
private idCounter; | ||
constructor({networkInterface, store, reduxRootKey, dataIdFromObject}: { | ||
constructor({networkInterface, store, reduxRootKey}: { | ||
networkInterface: NetworkInterface; | ||
store: ApolloStore; | ||
reduxRootKey: string; | ||
dataIdFromObject?: IdGetter; | ||
}); | ||
@@ -39,0 +36,0 @@ broadcastNewStore(store: any): void; |
@@ -45,3 +45,3 @@ "use strict"; | ||
var _this = this; | ||
var networkInterface = _a.networkInterface, store = _a.store, reduxRootKey = _a.reduxRootKey, dataIdFromObject = _a.dataIdFromObject; | ||
var networkInterface = _a.networkInterface, store = _a.store, reduxRootKey = _a.reduxRootKey; | ||
this.idCounter = 0; | ||
@@ -51,3 +51,2 @@ this.networkInterface = networkInterface; | ||
this.reduxRootKey = reduxRootKey; | ||
this.dataIdFromObject = dataIdFromObject; | ||
this.queryListeners = {}; | ||
@@ -182,3 +181,2 @@ if (this.store['subscribe']) { | ||
variables: variables, | ||
dataIdFromObject: this.dataIdFromObject, | ||
}), missingSelectionSets = _c.missingSelectionSets, result = _c.result; | ||
@@ -185,0 +183,0 @@ initialResult = result; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
105215
-0.61%1627
-0.49%