query($slug: String!) {
  post(slug: $slug) {
    author {
      posts @connection(key: "posts") {
        title
      }
    }
  }
}