Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 18 additions & 14 deletions content/collections/pages/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,15 @@ and `Entry_Pages_Home` types. These implementations would provide fields specifi
entries {
id
title
... on Entry_Pages_Page {
subtitle
content
}
... on Entry_Pages_Home {
hero_intro
hero_image
data {
... on Entry_Pages_Page {
subtitle
content
}
... on Entry_Pages_Home {
hero_intro
hero_image
}
}
}
}
Expand Down Expand Up @@ -840,13 +842,15 @@ You will need to query the implementations using fragments in order to get bluep
entries {
id
title
... on Entry_Blog_Post {
intro
content
}
... on Entry_Blog_ArtDirected_Post {
hero_image
content
data {
... on Entry_Blog_Post {
intro
content
}
... on Entry_Blog_ArtDirected_Post {
hero_image
content
}
}
}
}
Expand Down