@beta This is part of the Property Insights Beta Defines an edge of a bounded region.

GraphQL Schema definition

  • type Edge {
  • id: ID!
  • # The type of feature this edge represents. E.g. wall, room division, etc.
  • type: EdgeType
  • # The list of two vertices defining this edge.
  • vertices: [Vertex!]
  • # Where the line representing the edge is positioned within the projected
  • # thickness.
  • # 0.5 for half of the thickness on either side of the edge.
  • centerLineBias: Float
  • # The thickness of the feature (e.g. a wall) this edge represents.
  • thickness: Float
  • openings: [Opening]
  • }