OBJECT

Query

link GraphQL Schema definition

  • type Query {
  • # Get the list of apps metas/definitions
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # teamId: current team Id
  • appMetas(after: String, before: String, first: Int, last: Int, teamId: String): AppMetaResponse!
  • # Get the list of files/assets by the query
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # query: specify fields, conditions and operators to query
  • # sort: Sort the results by
  • # teamId: current team Id
  • assets(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: QueryAssetInput,
  • sort: AssetSort,
  • teamId: String
  • ): AssetResponse!
  • # Get the list of screens/devices by the query
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # query: specify fields, conditions and operators to query
  • # sort: Sort the results by
  • # teamId: current team Id
  • devices(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: QueryDeviceInput,
  • sort: DeviceSort,
  • teamId: String
  • ): DeviceResponse!
  • # Arguments
  • # appType: [Not documented]
  • getAppCfgs(appType: String!): JSONObject
  • # Arguments
  • # teamId: current team Id
  • # uuids: [Not documented]
  • getDeviceHeartBeatByUUIDs(
  • teamId: String,
  • uuids: [String!]!
  • ): [KeyValueItem!]!
  • # Transloadit upload templates with signed signature
  • getFileUploadOptions: JSONObject!
  • # Transloadit upload templates with signed signature
  • #
  • # Arguments
  • # payload: asset id
  • getFileUploadScreenCaptureOptions(
  • payload: UpdateObjectCaptureInput!
  • ): JSONObject!
  • # Get the list of groups (so called 'folders')
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # query: specify fields, conditions and operators to query
  • # sort: Sort the results by
  • # teamId: current team Id
  • groups(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: QueryGroupInput,
  • sort: GroupSort,
  • teamId: String
  • ): GroupResponse!
  • # The current user
  • me: MeResponse!
  • # Get the list of playlist by the query
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # query: specify fields, conditions and operators to query
  • # sort: Sort the results by
  • # teamId: current team Id
  • playlists(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: QueryPlaylistInput,
  • sort: PlaylistSort,
  • teamId: String
  • ): PlaylistResponse!
  • # To get the account schedule default or specific schedule default
  • #
  • # Arguments
  • # scheduleId: The schedule Id
  • # teamId: current team Id
  • scheduleDefault(scheduleId: String, teamId: String): ScheduleDefaultResponse!
  • # Get the list of schedule items from the schedule by the query
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # query: specify the scheduleId & startDate/endDate to query
  • # teamId: current team Id
  • scheduleItems(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: QueryScheduleItemsInput,
  • teamId: String
  • ): ScheduleItemsResponse!
  • # The list of preset repeat objects choices, use this internally for the UI modal
  • #
  • # Arguments
  • # startDate: the start date as DTSTART for RRule
  • scheduleRepeatObjectChoices(startDate: DateTime!): [ScheduleRepeatObject!]!
  • # Get the list of schedules by the query
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # query: specify fields, conditions and operators to query
  • # sort: [Not documented]
  • # teamId: current team Id
  • schedules(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • query: QueryScheduleInput,
  • sort: ScheduleSort,
  • teamId: String
  • ): ScheduleResponse!
  • # Get the list of teams for this account
  • #
  • # Arguments
  • # after: Paginate after opaque cursor
  • # before: Paginate before opaque cursor
  • # first: Paginate first
  • # last: Paginate last
  • # sort: Sort the results
  • # teamId: current team Id
  • teams(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • sort: TeamSort,
  • teamId: String
  • ): TeamResponse!
  • }

link Require by

This element is not required by anyone