Twitter Follower System Data Model

The idea here is to extend the filters to also filter on edges which would give you what you wanted with a query such as: (this is not yet available)

query ($myID: ID!) {
  queryPost(
    filter: {
      creator: {
        or: [
          { following: { id: [$myID] } }
          { followers: { id: [$myID] } }
        ]
      }
    }
    sort: { createdAt: DESC }
    limit: 100
  ) {
    id
    name
    description
  }
}