OBJECT

ProjectImage

Project Image Type

link GraphQL Schema definition

  • type ProjectImage {
  • # When the image was created
  • createdAt: ISO8601DateTime!
  • # ID of the Image
  • id: ID!
  • # position of the Image
  • position: Int
  • # ID of the project
  • projectId: ID!
  • # When the image was last updated
  • updatedAt: ISO8601DateTime!
  • # url of the Image
  • #
  • # Arguments
  • # width: [Not documented]
  • # height: [Not documented]
  • # smart: [Not documented]
  • url(width: Int, height: Int, smart: Boolean): String
  • }