OBJECT

ProspectingArea

link GraphQL Schema definition

  • type ProspectingArea {
  • # The account associated with the Prospecting Area.
  • account: Account
  • # The agent assigned to the Prospecting Area.
  • assigned: User
  • # When Prospecting Area was created.
  • createdAt: ISO8601DateTime!
  • # The name of the focus area.
  • focusAreaName: String
  • # The ID of the Prospecting Area.
  • id: ID!
  • # No of the Prospecting Areas.
  • numberOfProspects: Int!
  • # The coordinates defining the shape of the Prospecting Area.
  • polygonCoordinates: JSON
  • # The color representing the shape of the Prospecting Area.
  • shapeColor: String
  • # The Completed Date of Prospecting Area.
  • toBeCompletedBy: ISO8601DateTime!
  • # When Prospecting Area was updated
  • updatedAt: ISO8601DateTime!
  • # The creator of Prospecting Area.
  • user: User
  • }