在GitHub的GraphQL API上使用速率限制

时间:2017-12-29 22:58:09

标签: github graphql github-api github-graphql

我理解GitHub的GraphQL API has a rate limit,它要求您使用firstlastbeforeafter等切片。但是,如果我只想要特定字段的计数怎么办?例如,我不想获得所有用户的关注者,我只想获得关注者数量。这是查询:

query {
    user(login: "parkerziegler") {
      login,
      name,
      avatarUrl(size: 200)
      bio,
      company,
      location,
      createdAt,
      followers {
        // what can I do here to get the count rather than info on followers?
      }
    }
}

一般来说,我对如何在GraphQL中处理这些类型的计算感兴趣,即SUM或ORDER BY 。我猜这些需要在服务器上实现,但只是好奇,如果有人有任何见解。我一直在阅读pagination,但不知道这是否是我问题的解决方案。

1 个答案:

答案 0 :(得分:1)

您可以使用totalCount下的followers

来获取关注者数量
{
  user(login: "parkerziegler") {
    login
    name
    avatarUrl(size: 200)
    bio
    company
    location
    createdAt
    followers {
      totalCount
    }
  }
}

Try it in the explorer

您可以查看FollowerConnection对象