Created
March 7, 2021 11:01
-
-
Save lydemann/c63e263ff016219a0d583c5f17ccd518 to your computer and use it in GitHub Desktop.
graphql-helpers.ts
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
export function createInCache<ReadQueryResponseT>( | |
toCreate: EntityObject, | |
readQuery: DocumentNode, | |
cache: ApolloCache<any>, | |
entityName: keyof ReadQueryResponseT | |
) { | |
const existingEntities = cache.readQuery< | |
Record<keyof ReadQueryResponseT, EntityObject[]> | |
>({ | |
query: readQuery, | |
}); | |
if (toCreate && existingEntities) { | |
cache.writeQuery({ | |
query: readQuery, | |
data: { | |
[entityName]: [...existingEntities[entityName], toCreate], | |
}, | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment