I am using the following to search repositories by query name "android"
{
search(query: "android", type: REPOSITORY, first: 50) {
repositoryCount
edges {
node {
... on Repository {
id
name
description
forkCount
owner{
avatarUrl
}
}
}
}
}
}
How to get the REPOSITORY subscriber count and the list of subscribers
Thanks In advance :)