Object GitHub::ProjectColumn

A column inside a project.

Fields

cards(after: String, before: String, first: Int, last: Int, archivedStates: [ProjectCardArchivedState] = [ARCHIVED, NOT_ARCHIVED]): ProjectCardConnection!

List of cards in the column

Args

after: String

Returns the elements in the list that come after the specified cursor.

before: String

Returns the elements in the list that come before the specified cursor.

first: Int

Returns the first n elements from the list.

last: Int

Returns the last n elements from the list.

archivedStates: [ProjectCardArchivedState] = [ARCHIVED, NOT_ARCHIVED]

A list of archived states to filter the cards by

createdAt: DateTime!

Identifies the date and time when the object was created.

databaseId: Int

Identifies the primary key from the database.

id: ID!

name: String!

The project column's name.

project: Project!

The project that contains this column.

purpose: ProjectColumnPurpose

The semantic purpose of the column

resourcePath: URI!

The HTTP path for this project column

updatedAt: DateTime!

Identifies the date and time when the object was last updated.

url: URI!

The HTTP URL for this project column

Uses

AddProjectCardPayload.projectColumn

DeleteProjectCardPayload.column

ProjectCard.column

ProjectColumnConnection.nodes

ProjectColumnEdge.node

UpdateProjectColumnPayload.projectColumn

Node