SpaceGroup
Represents a Group of Spaces on a Floor.
type SpaceGroup {
color: String
created: Date!
description: String
floorSpaces: [FloorSpace!]!
id: ID!
name: String
ratio: Float!
spaces: [FloorSpace!]! @deprecated
totalFloorSpaces: Int!
totalSpaces: Int! @deprecated
type: SpaceGroupType!
updated: Date!
}
Fields
SpaceGroup.color ● String scalar
SpaceGroup.created ● Date! non-null scalar
Created DateTime
SpaceGroup.description ● String scalar
Description of the Space Group
SpaceGroup.floorSpaces ● [FloorSpace!]! non-null object
All floor spaces within this group
SpaceGroup.id ● ID! non-null scalar
Unique Identifier
SpaceGroup.name ● String scalar
Name of the Space Group
SpaceGroup.ratio ● Float! non-null scalar
SpaceGroup.spaces ● [FloorSpace!]! deprecated non-null object
DEPRECATED
Use 'floorSpaces' instead
All spaces within this group
SpaceGroup.totalFloorSpaces ● Int! non-null scalar
Total number of floor spaces assigned to this group
SpaceGroup.totalSpaces ● Int! deprecated non-null scalar
DEPRECATED
Use 'totalFloorSpaces' instead
Total number of spaces assigned to this group
SpaceGroup.type ● SpaceGroupType! non-null enum
Assigned Space Group Type
SpaceGroup.updated ● Date! non-null scalar
Last updated DateTime
Returned By
spaceGroup query ● spaceGroups query
Member Of
Floor object ● FloorSpace object