Files
web/lib/graphql/Fragments/Blocks/Puff.graphql
2024-02-07 11:58:54 +01:00

15 lines
324 B
GraphQL

#import "../Puff.graphql"
fragment PuffBlock on CurrentBlocksPageBlocksPuffs {
puffs {
# We have to manually add a limit since Contentstack handles its complexity calculation in a certain way
puffsConnection(limit: 9) {
totalCount
edges {
node {
...Puff
}
}
}
}
}