9 lines
133 B
GraphQL
9 lines
133 B
GraphQL
query($slug: String!) {
|
|
post(slug: $slug) {
|
|
author {
|
|
posts @connection(key: "posts") {
|
|
title
|
|
}
|
|
}
|
|
}
|
|
}
|