GraphQL query for retrieving a project ID from a GitHub organization.
This query fetches the ID of a GitHub Project V2 by its organization login and project number.
query getProjectId($organizationLogin: String!, $projectNumber: Int!) { organization(login: $organizationLogin) { projectV2(number: $projectNumber) { id } }} Copy
query getProjectId($organizationLogin: String!, $projectNumber: Int!) { organization(login: $organizationLogin) { projectV2(number: $projectNumber) { id } }}
const getProjectIdQuery: string...
GraphQL query for retrieving a project ID from a GitHub organization.