This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
forked from apollographql/apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
By allowing users to rewrite data lookups from the store, they can satisfy behavior like apollographql#332
- Loading branch information
Showing
10 changed files
with
251 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import every = require('lodash.every'); | ||
import has = require('lodash.has'); | ||
|
||
import { | ||
Field, | ||
} from 'graphql'; | ||
|
||
import { | ||
NormalizedCache, | ||
StoreValue, | ||
IdValue, | ||
} from './store'; | ||
|
||
// Middleware that is given an opportunity to rewrite results from the store. | ||
// It should call `next()` to look up the default value. | ||
export type StoreFetchMiddleware = ( | ||
field: Field, | ||
variables: {}, | ||
store: NormalizedCache, | ||
next: () => StoreValue | ||
) => StoreValue; | ||
|
||
// StoreFetchMiddleware that special cases all parameterized queries containing | ||
// either `id` or `ids` to retrieve nodes by those ids directly from the store. | ||
// | ||
// This allows the client to avoid an extra round trip when it is fetching a | ||
// node by id that was previously fetched by a different query. | ||
// | ||
// NOTE: This middleware assumes that you are mapping data ids to the id of | ||
// your nodes. E.g. `dataIdFromObject: value => value.id`. | ||
export function cachedFetchById( | ||
field: Field, | ||
variables: {}, | ||
store: NormalizedCache, | ||
next: () => StoreValue | ||
): StoreValue { | ||
// Note that we are careful to _not_ return an id if it doesn't exist in the | ||
// store! apollo-client assumes that if an id exists in the store, the node | ||
// referenced must also exist. | ||
if (field.arguments && field.arguments.length === 1) { | ||
const onlyArg = field.arguments[0]; | ||
if (onlyArg.name.value === 'id') { | ||
const id = variables['id']; | ||
if (has(store, id)) { | ||
return toIdValue(id); | ||
} | ||
} else if (onlyArg.name.value === 'ids') { | ||
const ids = variables['ids']; | ||
if (every(ids, id => has(store, id))) { | ||
return ids; | ||
} | ||
} | ||
} | ||
|
||
// Otherwise, fall back to the regular behavior. | ||
return next(); | ||
} | ||
|
||
function toIdValue(id): IdValue { | ||
return { | ||
type: 'id', | ||
id, | ||
generated: false, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.