Module graphql/query_listOpenedProjectsInOrg/listOpenedProjectsInOrgGenerated

Source

Type Aliases§

Source§

type ListOpenedProjectsInOrgResult = Data

Type alias for the successful result data from the list opened projects query.

remarks

This represents the data payload when the query executes successfully.

Variables§

Source§

const listOpenedProjectsInOrgQuery: string...

GraphQL query for listing GitHub Projects in an organization.

remarks

This query retrieves all GitHub Project V2 items in an organization, including their metadata (id, number, title, closed status) and field configurations. Supports filtering projects by a search query.

example
query listProjectsInOrg($organizationLogin: String!, $projectQuery: String) {
organization(login: $organizationLogin) {
projectsV2(first: 100, query: $projectQuery) {
edges { node { id, number, title, closed, fields(first: 100) { ... } } }
}
}
}

Enumerations§

ProjectV2FieldType

Enumeration of Project V2 field types.

Classes§

Convert

Utility class for converting between JSON strings and typed objects.

Interfaces§

Data

Data payload interface for the list opened projects query.

Error

Error interface for GraphQL query errors.

ListOpenedProjectsInOrgRawResult

Raw result interface for the list opened projects query response.

Organization

Organization interface representing a GitHub organization.

ProjectV2

Project V2 interface representing a GitHub Project.

ProjectV2Connection

Connection interface for Project V2 edges.

ProjectV2Edge

Edge interface wrapping a Project V2 node.

ProjectV2FieldConfiguration

Field configuration interface for Project V2 fields.

ProjectV2FieldConfigurationConnection

Connection interface for Project V2 field configuration edges.

ProjectV2FieldConfigurationEdge

Edge interface wrapping a field configuration node.