mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
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 }
|
|
}
|
|
}
|