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