I recently had my repo migrated over to a new cluster so that I can use GraphQL. The content types are appearing, but there seems to be an issue with slice types.
query CaseStudy($slug: String!) {
caseStudy: allCase_studys(uid: $slug) {
edges {
node {
_meta {
uid
}
# ... truncated
body {
__typename
... on Case_studyBodySubtitleslicetype {
type
# primary and fields are not available
}
... on Case_studyBodyFulltextslicetype {
type
# primary and fields are not available
}
# ... truncated
}
}
}
}
}
I also tried:
- Re-saving the content type
- Re-saving the post
- Reading this: GraphQL schema not updating
But have no success.