Merge pull request #128 from omnivore-app/fix/rm-labels-from-get-article

Remove the labels query from GetArticle
This commit is contained in:
Jackson Harper
2022-02-24 21:04:17 -08:00
committed by GitHub

View File

@ -76,9 +76,6 @@ const query = gql`
highlights(input: { includeFriends: $includeFriendsHighlights }) {
...HighlightFields
}
labels {
...LabelFields
}
}
}
... on ArticleError {
@ -88,7 +85,6 @@ const query = gql`
}
${articleFragment}
${highlightFragment}
${labelFragment}
`
export const cacheArticle = (
mutate: ScopedMutator,