Skip to content

Instantly share code, notes, and snippets.

@DuncanFaulkner
Last active March 20, 2021 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DuncanFaulkner/1d6165d381613abbc495320a0a8ec2f9 to your computer and use it in GitHub Desktop.
Save DuncanFaulkner/1d6165d381613abbc495320a0a8ec2f9 to your computer and use it in GitHub Desktop.
refechQuery
this.apollo.mutate<{ createCourse: Course }>({
mutation: CREATE_COURSE_MUTATION,
variables: {
name: course.name,
description: course.description
} as Course,
refetchQueries: [
{
query: gql`
query updateCache(...){
...
}
`
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment