EdgeDetails

open_in_new

@beta This is part of the Property Insights Beta Used to create and patch bounded region edges.

GraphQL Schema definition

  • input EdgeDetails {
  • # The ID of the layer the Edge should be associated with.
  • # If left blank it will default to the View's default write layer, or the existing
  • # data's layer on a patch mutation.
  • layerId: ID
  • # The id of the floor the new boundary edge should be created on.
  • floorId: ID
  • # The type of edge. E.g. wall, invisible
  • type: EdgeType
  • # The ids of the vertices defining this boundary edge.
  • vertices: [ID!]
  • # Where the line representing the edge is positioned within the projected
  • # thickness.
  • # Default: 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. Measured in the
  • # units set for this edge.
  • thickness: Float
  • # The units of length for 'thickness' on this mutation.
  • #
  • # Note: This does not effect points in vertices/edges. These are strictly
  • # stored/read in meters.
  • units: Units
  • }