18 lines
266 B
GraphQL
18 lines
266 B
GraphQL
#import "./Image.graphql"
|
|
|
|
fragment Preamble on CurrentBlocksPage {
|
|
preamble {
|
|
text {
|
|
json
|
|
embedded_itemsConnection(limit: 30) {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...Image
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|