一次调用即可从Github Graphql API获取有关多个存储库的信息

时间:2019-12-18 14:11:21

标签: github graphql github-graphql

我正在尝试创建对Github GraphQL API的查询,该查询接收一个存储库列表作为参数,并在单个API调用中返回那些存储库的信息,有人知道怎么做吗?

这样的事情(我知道这行不通)

query myOrgRepos($repos: [String!]!) {
  search(query:"""
  repo in $repos
  """, type: REPOSITORY, first: 100) {
      repo: nodes {
          ... on Repository{
              name
              description
              updatedAt
          }
      }
  }

0 个答案:

没有答案