OBJECT

ProjectStage

Project Stage

link GraphQL Schema definition

  • type ProjectStage {
  • # Activity feed items
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # activityFeedItemType: [Not documented]
  • # noteType: [Not documented]
  • # activityType: [Not documented]
  • # limit: [Not documented]
  • # pinned: [Not documented]
  • # scopes: [Not documented]
  • activityFeed(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • activityFeedItemType: [ActivityFeedItemEnum!],
  • noteType: [NoteTypeEnum!],
  • activityType: [ActivityTypeEnum!],
  • limit: Int,
  • pinned: Boolean,
  • scopes: [ActivityFeedScopesEnum!]
  • ): ActivityFeedConnection
  • # When the project stage construction was completed
  • constructionCompletionDate: ISO8601DateTime
  • # When the project stage construction was started
  • constructionStartDate: ISO8601DateTime
  • # When the project stage was created
  • createdAt: ISO8601DateTime!
  • # Deals of the project stage
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # orderBy: [Not documented]
  • # updatedBefore: [Not documented]
  • # updatedAfter: [Not documented]
  • # filterSet: Find deals by filters
  • deals(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • offset: Int,
  • limit: Int,
  • orderBy: DealOrderEnum,
  • updatedBefore: ISO8601DateTime,
  • updatedAfter: ISO8601DateTime,
  • filterSet: FilterSetAttributes
  • ): DealConnection
  • # description of the Project stage
  • description: String
  • # documents of the Project stage
  • documents: [Document!]
  • # headline of the Project stage
  • headline: String
  • # ID of the Project stage
  • id: ID!
  • # name of the Project stage
  • name: String
  • # project of the Project stage
  • project: Project
  • projectStageFloorplans: [ProjectStageFloorplan!]
  • projectStageImages: [ProjectStageImage!]
  • # properties of the Project stage
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • properties(after: String, before: String, first: Int, last: Int): PropertyConnection
  • # When the project stage was released
  • releaseDate: ISO8601DateTime
  • # The status of the project stage
  • status: ProjectStatusEnum
  • # Thumbnail square 150x150
  • thumbnailSquare: String
  • # When the project stage title was issued
  • titleIssueDate: ISO8601DateTime
  • # When the project stage was last updated
  • updatedAt: ISO8601DateTime!
  • }