OBJECT

Account

A registered account

link GraphQL Schema definition

  • type Account implements Node {
  • # The users that can access the account
  • access: Access
  • businessName: String
  • businessType: String
  • # The account's curator profile
  • curator: Curator
  • # The account's feature setup
  • #
  • # Arguments
  • # platform: [Not documented]
  • features(platform: Platform): [Feature]
  • id: ID!
  • # The account's locations
  • #
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • locations(after: String, before: String, first: Int, last: Int): LocationConnection
  • # The account's added soundtracks, playlists and schedules
  • musicLibrary: MusicLibrary
  • settings: AccountSettings
  • # The account's sound zones (the zones are also available under each location)
  • #
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # filter: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • soundZones(
  • after: String,
  • before: String,
  • filter: SoundZoneFilter,
  • first: Int,
  • last: Int
  • ): SoundZoneConnection
  • }