1query($slug: String!) {
2  post(slug: $slug) {
3    author {
4      posts @connection(key: "posts") {
5        title
6      }
7    }
8  }
9}
10