Hi I just started looking into GraphQL. Don’t really understand it yet but I’m getting there.
I’m playing around with the Github API. I’m trying to do a query to find all repositories matching specific names, from an array like: [“repo A”, “repo B”, “repo C”].
Something like this: (this example is pseudo though)
query {
repositoryOwner(login: "beinnor") {
repositories (first: 10, *** matchingNames: ["repo A", "repo B", "repo C"] ***) {
nodes {
name
}
}
}
}
Instead of getting the first 10 repos, i only want to get those in the array.