11 lines
197 B
GraphQL
11 lines
197 B
GraphQL
|
# import "./author.fragment.graphql"
|
||
|
# import "./post.fragment.graphql"
|
||
|
|
||
|
query($title: String!) {
|
||
|
blog(title: $title) {
|
||
|
description
|
||
|
mainAuthor { ...AuthorF }
|
||
|
posts { ...PostF }
|
||
|
}
|
||
|
}
|