GitHub GraphQL API (v.4) を使用して、特定のリポジトリに存在するすべてのブランチ名を取得したいと考えています。
私の試み
{
repository(name: "my-repository", owner: "my-account") {
... on Ref {
name
}
}
}
エラーを返します:
{'data': None, 'errors': [{'message': "Fragment on Ref can't be spread inside Repository", 'locations': [{'line': 4, 'column': 13}]}]}