Tag: Github
-
How to form a GitHub GraphQL API query to compare between branches, e.g., compare MASTER and SAMPLE_12 to get all commits for potential Pull Request?
0 Looking for a GraphQl query to search for a list of all commits when comparing between two branches on GitHub within a repository. For example, https://github.com/account-test/repo-test/compare/main…development will render all the commits, if any. How to get the list of all commits when comparing between two branches using the GitHub GraphQL API? I tried query…
-
Get info about several repositories from Github Graphql API in a single call
6 I am trying to create a query to Github GraphQL API that receive a list of repos as a parameter, and returns the info of those repositories in a single API call, does anyone know how to do that? Something like this (I know this doesn’t work) query myOrgRepos($repos: [String!]!) { search(query:””” repo in…
-
Why does membersWithRoles not return all members of an organization?
0 Using GraphQL for GitHub, I cannot get the full set of members in an organization. Using this GraphQL query, I get 45 users: query {node(id: "#@#@#$@#$##$#@") { … on Organization { membersWithRole (first: 100) { totalCount nodes { login id name createdAt, updatedAt} }}}} and same with this one: organization(login: "OrgName") { membersWithRole(first:100) {…
-
Github graphql – memebersWithRoles does not return all members on organization
0 Using graphQL for github, I cannot get the full set of members in an organization. Using this GraphQL I get 45 users: query {node(id: "#@#@#$@#$##$#@") { … on Organization { membersWithRole (first: 100) { totalCount nodes { login id name createdAt, updatedAt} }}}} and same with this one: organization(login: "OrgName") { membersWithRole(first:100) { totalCount…
-
Using GitHub GraphQL API to Query Filtered Items in ProjectV2 by State
0 I’m attempting to use the GitHub GraphQL API to query filtered items in ProjectV2 based on their state. Here’s what I have so far, but I’d like to filter items in Issues or Pull Requests with a state of CLOSED or MERGED, or based on their milestone. Any help would be greatly appreciated. query…
-
Data Engineer/Lead – Exatech Inc – Atlanta, GA
Exatech Inc Atlanta, GA Accepts corp to corp applications, Contract: Independent, W2 Skills Aws Lambda GitHub DynamoDB BitBucket GraphQL pytest Job Description Hello , This is Joseph from Exatech Inc. I have an urgent opening of Data Engineer/Lead in Atlanta, GA || Onsite Role. Role: Data Engineer/Lead Location: Atlanta, GA ( onsite ) Duration: 12+…
-
GitHub GraphQL API Filter on custom text field in Project V2
5 We are using GitHub Projects (Beta). I created a custom text field called oma-project. I want to use the API to filter on this field, e.g., oma-project: "P0001". This should return all issues with this value in the custom field. Looking at the Projects (beta) docs, I can list the first n issues but…
-
How can I retrieve the date an issue was added to a projectV2 using Github’s GRAPHQL api?
0 I’m working on a Github automation script, for a specific task I need to know from a projectV2 and an issue number, get the date when the issue was added using the graphQL api. I tried projectcards but it concerns only the project item and not the projectV2. I tried to look at the…
-
Using GraphQL to list all tags of a FFmpeg and search for releases
0 I’m trying to use GraphQL to get all tags of FFmpeg and later get the downloadUrl of each tag release. In the GraphQL Explorer, I used the following query: query { repository(owner: "FFmpeg", name: "FFmpeg") { refs(refPrefix: "refs/tags/", last: 100) { nodes { repository { releases(last: 100, orderBy: { field: CREATED_AT, direction: DESC}) {…
-
What is the best way to push file changes to github programmatically?
0 I need to push changes to files on a number of projects in a regular basis, through automation. Assuming the data is available in a specific branch locally, how do I push the changes to github through API? There is a REST API and also the graphQL API , but both seem to require…