Account
Represents a account (a company)
type Account {
id: ID!
name: String!
users(page: PaginationInput! = [object, Object]): [User!]!
serviceLocations(
page: PaginationInput! = [object, Object]
): [ServiceLocation!]!
containerSites(page: PaginationInput! = [object, Object]): [ContainerSite!]!
binBars(page: PaginationInput! = [object, Object]): [BinBar!]!
}
Fields
id
(ID!
)
ID of the account
name
(String!
)
Name of the account
users
([User!]!
)
A list of all users inside that account.
An offset (index to start) and an limit (maximum returned) are optional
serviceLocations
([ServiceLocation!]!
)
A list of all service locations used by that account.
An offset (index to start) and an limit (maximum returned) are optional
containerSites
([ContainerSite!]!
)
A list of all container sites used by that account.
An offset (index to start) and an limit (maximum returned) are optional
binBars
([BinBar!]!
)
A list of all BinBars used by that account.
An offset (index to start) and an limit (maximum returned) are optional