A room within the model, this acts as a container for other information.
- type ModelRoom {
- : ID!
- # A user displayable label for the room.
- : String
- # Cortex generated classifiers for the room.
- : [String]
- # Estimate of the dimensions of the room.
- #
- # Arguments
- # units: undefined
- (: Units): Dimension
- # The primary floor this room is located on.
- : ModelFloor
- # Lists the measurements that have been taken in this room.
- #
- # Arguments
- # includeDisabled: Include measurements which are currently
- # disabled in the public view of the model.
- # Default: false
- (: Boolean): [Measurement!]!
- # Lists the measurement paths that have at least one point in this room.
- #
- # Arguments
- # includeDisabled: Include measurement paths which are currently
- # disabled in the public view of the model.
- # Default: false
- (: Boolean): [MeasurementPath!]!
- # Lists the notes associated with this model room.
- #
- # Arguments
- # includeDisabled: Include notes which are currently disabled in
- # the public view of the model.
- # Default: false
- # resolutionStatus: Only include notes whose resolutions matches
- # the provided status.
- (: Boolean, : [ResolutionStatus!]): [Note!]
- # Locations of interest within a room. This is generally used to render
- # waypoints to navigate through a model.
- #
- # Arguments
- # ids: If specified only locations with the given ids will be
- # included.
- # If the same id is repeated the location will only appear in the result list
- # once.
- # If no location with a given id exists there will be no corresponding entry in
- # the list.
- # tags: If specified only locations that contain all the
- # specified tags will be included.
- (: [String!], : [String!]): [AnchorLocation!]
- # Locations within the room that have a panoramic image associated with them.
- # The location is the position of the camera showing the panorama and is usually
- # associated with an anchor location that should be used for navigation.
- #
- # Arguments
- # ids: If specified only locations with the given ids will be
- # included.
- # If the same id is repeated the location will only appear in the result list
- # once.
- # If no location with a given id exists there will be no corresponding entry in
- # the list.
- # variants: If specified only return locations that match one of
- # the specified variants.
- (: [String!], : [String!]): [PanoramicImageLocation!]
- }