OBJECT
ProjectColumn
A column inside a project.
link GraphQL Schema definition
- type ProjectColumn implements Node {
- # List of cards in the column
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- Int, : String, : Int, : String): ProjectCardConnection! ( :
- # Identifies the date and time when the object was created.
- DateTime! :
- # Identifies the primary key from the database.
- Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." ) :
- ID! :
- # The project column's name.
- String! :
- # The project that contains this column.
- Project! :
- # Identifies the date and time when the object was last updated.
- DateTime! :
- }