我有一个github存储库URL的动态列表(假设大小小于100)。我想使用GraphQL查询其中每个的特定信息。
我可以一次批处理吗?
答案 0 :(得分:0)
好的,我找到了解决方案。仅当您知道每个存储库的全局node_id
时才有效,这绝对是我的情况。
query($ids: [ID!]!) {
nodes(ids: $ids) {
... on Repository {
name
description
}
}
}