OBJECT

ProjectCard

A card in a project.

link GraphQL Schema definition

  • type ProjectCard implements Node {
  • # The card content item
  • content: ProjectCardItem
  • # Identifies the date and time when the object was created.
  • createdAt: DateTime!
  • # The user who created this card
  • creator: User!
  • # Identifies the primary key from the database.
  • databaseId: Int @deprecated( reason: "Exposed database IDs will eventually be removed in favor of global Relay IDs." )
  • id: ID!
  • # The card note
  • note: String
  • # The column that contains this card.
  • projectColumn: ProjectColumn!
  • # The state of ProjectCard
  • state: ProjectCardState
  • # Identifies the date and time when the object was last updated.
  • updatedAt: DateTime!
  • }