41 lines
516 B
GraphQL
41 lines
516 B
GraphQL
#import "./Image.graphql"
|
|
#import "./PageLinks.graphql"
|
|
|
|
fragment Puff on Puff {
|
|
imageConnection {
|
|
edges {
|
|
node {
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
is_internal
|
|
link {
|
|
href
|
|
title
|
|
}
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...CurrentBlocksPageLink
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
uid
|
|
}
|
|
text {
|
|
json
|
|
embedded_itemsConnection {
|
|
totalCount
|
|
edges {
|
|
node {
|
|
__typename
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
}
|
|
title
|
|
} |