OBJECT

Project

Project

link GraphQL Schema definition

  • type Project {
  • # 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
  • # Agents of the Project
  • #
  • # 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.
  • agents(after: String, before: String, first: Int, last: Int): AgentConnection
  • # The automation trackers of a project
  • #
  • # 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.
  • # scopes: scopes of the automation trackers
  • # orderBy: order of the automation trackers
  • automationTrackers(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • scopes: [AutomationTrackerScopesEnum!],
  • orderBy: AutomationTrackerOrderEnum
  • ): AutomationTrackerConnection!
  • # When the project was created
  • createdAt: ISO8601DateTime!
  • # custom fields of the Project
  • customFields: [CustomField!]
  • # Deals of the project
  • #
  • # 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
  • description: String
  • # documents of the Project
  • documents: [Document!]
  • # formatted street line 1 of the Project
  • formattedAddress: String
  • # headline of the Project
  • headline: String
  • # ID of the Project
  • id: ID!
  • # internal notes of the Project
  • internalNotes: String
  • # name of the Project
  • name: String
  • # permission of the Project
  • permission: Permission
  • # postcode of the Project
  • postcode: Postcode
  • projectFloorplans: [ProjectFloorplan!]
  • projectImages: [ProjectImage!]
  • # stages of the project
  • projectStages: [ProjectStage!]
  • # type of the project
  • projectType: ProjectTypeEnum
  • # properties of the Project
  • #
  • # 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
  • # Realestate.com.au agency ID of the Project
  • reaAgencyId: String
  • # Realestate.com.au project ID of the Project
  • reaProjectId: String
  • # audit logs of the Project
  • recentAudits: [Audit!]
  • # The status of the project
  • status: ProjectStatusEnum
  • # street of the Project
  • street: String
  • # street number of the Project
  • streetNo: String
  • # Thumbnail square 150x150
  • thumbnailSquare: String
  • # When the project was last updated
  • updatedAt: ISO8601DateTime!
  • }