OBJECT
ProjectCard
A card in a project.
link GraphQL Schema definition
- type ProjectCard implements Node {
- # The card content item
- : ProjectCardItem
- # Identifies the date and time when the object was created.
- : DateTime!
- # The user who created this card
- : User!
- # 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 card note
- : String
- # The column that contains this card.
- : ProjectColumn!
- # The state of ProjectCard
- : ProjectCardState
- # Identifies the date and time when the object was last updated.
- : DateTime!
- }