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
commit f6951f468e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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,