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