OBJECT
ModelFloor
Represents a floor within the model. This is generally used as a navigation helper as well as a container for rooms, locations and annotations.
link GraphQL Schema definition
- type ModelFloor {
 - : ID! 
 - #   The floor's name as labeled in workshop/showcase.
 - : String 
 - #   Gets the dimensions of the floor, if available,
 - #   in the specified units.  If no units are specified
 - #   the configured account setting will be used.
 - # 
 - # Arguments
 - #   units: undefined
 - (: Units): Dimension 
 - #   Lists the rooms on this floor, optionally filtering
 - #   by id and/or tags.
 - # 
 - # Arguments
 - #   ids: undefined
 - #   tags: undefined
 - (: [ID], : [String]): [ModelRoom] 
 - #   The floor's sequence in the vertical order of floors (spatially lowest floor 
 - #   starts at sequence 0, next is 1, etc.)
 - : Int! 
 - #   Lists the Mattertags that are on this floor.
 - # 
 - # Arguments
 - #   includeDisabled: Include Mattertags which are currently 
 - #   disabled in the public view of the model.
 - #   Default: false
 - (: Boolean): [Mattertag!]! 
 - #   Lists the measurements that have been taken on this floor.
 - # 
 - # 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 on this floor.
 - # 
 - # Arguments
 - #   includeDisabled: Include measurement paths which are currently 
 - #   disabled in the public view of the model.
 - #   Default: false
 - (: Boolean): [MeasurementPath!]! 
 - #   Locations of interest on a floor.  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 on a floor 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!] 
 - }
 
    link Require by
- AnchorLocationProvides an anchor within the model to attach other information.
 - FloorplanA floorplan, often formatted as an image, although other options may be available.
 - MattertagA point in the model with other information such as clips, photos and text associated with it.
 - MeasurementA measurement between two points within the model.
 - MeasurementPathPointA point within a measurement path.
 - ModelA digital twin, metadata and access to assets associated with a 3D model of a space.
 - ModelRoomA room within the model, this acts as a container for other information.
 - MutationData update operations.