OBJECT

Mutation

link GraphQL Schema definition

  • type Mutation {
  • # Mark packet as deleted
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deletePacket(org: Uuid!, id: String!): MutationResult!
  • # Send packet message
  • #
  • # Arguments
  • # org: [Not documented]
  • # msg: [Not documented]
  • # senderId: [Not documented]
  • # event: weave.chat | weave.ping | weave.ephemeral |
  • # weave.singleton
  • sendPacket(
  • org: Uuid!,
  • msg: PacketMessageMutation!,
  • senderId: Uuid!,
  • event: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createChannel(org: Uuid!, m: ChannelMutation!): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateChannel(org: Uuid!, id: Uuid!, m: ChannelMutation!): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteChannel(org: Uuid!, id: Uuid!): String!
  • # Update managed channel
  • #
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # status: [Not documented]
  • # description: [Not documented]
  • # welcome: [Not documented]
  • # icon: [Not documented]
  • # color: [Not documented]
  • # handle: [Not documented]
  • createManagedChannel(
  • org: Uuid!,
  • name: String,
  • status: String,
  • description: String,
  • welcome: String,
  • icon: String,
  • color: String,
  • handle: String
  • ): MutationResult!
  • # Removed managed channel
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • removeManagedChannel(org: Uuid!, id: Uuid!): MutationResult!
  • # Update managed channel
  • #
  • # Arguments
  • # id: [Not documented]
  • # org: [Not documented]
  • # name: [Not documented]
  • # status: [Not documented]
  • # description: [Not documented]
  • # welcome: [Not documented]
  • # icon: [Not documented]
  • # color: [Not documented]
  • # handle: [Not documented]
  • updateManagedChannel(
  • id: Uuid!,
  • org: Uuid!,
  • name: String,
  • status: String,
  • description: String,
  • welcome: String,
  • icon: String,
  • color: String,
  • handle: String
  • ): MutationResult!
  • # Add managed channel user
  • #
  • # Arguments
  • # org: [Not documented]
  • # channelId: [Not documented]
  • # userId: [Not documented]
  • addManagedChannelUser(
  • org: Uuid!,
  • channelId: Uuid!,
  • userId: Uuid!
  • ): MutationResult!
  • # Remove managed channel user
  • #
  • # Arguments
  • # org: [Not documented]
  • # channelId: [Not documented]
  • # userId: [Not documented]
  • removeManagedChannelUser(
  • org: Uuid!,
  • channelId: Uuid!,
  • userId: Uuid!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # event: [Not documented]
  • # eventKind: [Not documented]
  • # eventPayload: [Not documented]
  • # eventServiceId: [Not documented]
  • addMemberEvent(
  • org: Uuid!,
  • userId: Uuid!,
  • event: String,
  • eventKind: String,
  • eventPayload: String,
  • eventServiceId: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # userId: [Not documented]
  • # event: [Not documented]
  • # eventKind: [Not documented]
  • # eventPayload: [Not documented]
  • # eventServiceId: [Not documented]
  • updateMemberEvent(
  • org: Uuid!,
  • id: Uuid!,
  • userId: Uuid!,
  • event: String,
  • eventKind: String,
  • eventPayload: String,
  • eventServiceId: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteMemberEvent(org: Uuid!, id: Uuid!): MutationResult!
  • # Create program ticket
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programKindId: [Not documented]
  • # externalId: [Not documented]
  • # sku: [Not documented]
  • # baseSku: [Not documented]
  • addProgramTicket(
  • org: Uuid!,
  • userId: Uuid!,
  • programKindId: Uuid!,
  • externalId: String,
  • sku: String,
  • baseSku: String
  • ): MutationResult!
  • # Consume program ticket
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # id: [Not documented]
  • # programId: [Not documented]
  • # programKindId: [Not documented]
  • consumeProgramTicket(
  • org: Uuid!,
  • userId: Uuid!,
  • id: Uuid!,
  • programId: Uuid!,
  • programKindId: Uuid!
  • ): MutationResult!
  • # Cancel program ticket
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # id: [Not documented]
  • # programKindId: [Not documented]
  • cancelProgramTicket(
  • org: Uuid!,
  • userId: Uuid!,
  • id: Uuid!,
  • programKindId: Uuid!
  • ): MutationResult!
  • # Free program ticket
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # id: [Not documented]
  • # programId: [Not documented]
  • # programKindId: [Not documented]
  • freeProgramTicket(
  • org: Uuid!,
  • userId: Uuid!,
  • id: Uuid!,
  • programId: Uuid!,
  • programKindId: Uuid!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # currentSignInIp: [Not documented]
  • updateUserInfo(org: Uuid!, userId: Uuid!, currentSignInIp: String): MutationResult!
  • # Update profile image for entity, must have permission
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • updateAvatar(org: Uuid!, m: ImageUpdate!): MutationResult!
  • # Create workflow rule
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • addRule(org: Uuid!, m: RuleMutation!): MutationResult!
  • # Update workflow rule
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateRule(org: Uuid!, id: Uuid!, m: RuleMutation!): MutationResult!
  • # Delete workflow rule
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteRule(org: Uuid!, id: Uuid!): MutationResult!
  • # Create trigger
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • addTrigger(org: Uuid!, m: BehaviorTriggerMutation!): MutationResult!
  • # Update trigger
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateTrigger(org: Uuid!, id: Uuid!, m: BehaviorTriggerMutation!): MutationResult!
  • # Delete trigger
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteTrigger(org: Uuid!, id: Uuid!): MutationResult!
  • # Add new data droplet
  • #
  • # Arguments
  • # org: [Not documented]
  • # handle: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # notes: [Not documented]
  • # opts: [Not documented]
  • # status: [Not documented]
  • addDataDroplet(
  • org: Uuid!,
  • handle: String,
  • name: String,
  • description: String,
  • notes: String,
  • opts: String,
  • status: String
  • ): MutationResult!
  • # Update data droplet
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # handle: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # notes: [Not documented]
  • # opts: [Not documented]
  • # status: [Not documented]
  • updateDataDroplet(
  • org: Uuid!,
  • id: Uuid!,
  • handle: String,
  • name: String,
  • description: String,
  • notes: String,
  • opts: String,
  • status: String
  • ): MutationResult!
  • # Delete data droplet
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteDataDroplet(org: Uuid!, id: Uuid!): MutationResult!
  • # Add new data droplet entry
  • #
  • # Arguments
  • # org: [Not documented]
  • # droplet: [Not documented]
  • # name: [Not documented]
  • # content: [Not documented]
  • # notes: [Not documented]
  • # rule: [Not documented]
  • # opts: [Not documented]
  • # status: [Not documented]
  • addDataDropletEntry(
  • org: Uuid!,
  • droplet: Uuid!,
  • name: String,
  • content: String,
  • notes: String,
  • rule: String,
  • opts: String,
  • status: String
  • ): MutationResult!
  • # Add new data droplet entry with handle
  • #
  • # Arguments
  • # org: [Not documented]
  • # dropletHandle: [Not documented]
  • # name: [Not documented]
  • # content: [Not documented]
  • # notes: [Not documented]
  • # rule: [Not documented]
  • # opts: [Not documented]
  • # status: [Not documented]
  • addDataDropletEntryWithHandle(
  • org: Uuid!,
  • dropletHandle: String!,
  • name: String,
  • content: String,
  • notes: String,
  • rule: String,
  • opts: String,
  • status: String
  • ): MutationResult!
  • # Update data droplet entry
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # content: [Not documented]
  • # notes: [Not documented]
  • # rule: [Not documented]
  • # opts: [Not documented]
  • # status: [Not documented]
  • updateDataDropletEntry(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • content: String,
  • notes: String,
  • rule: String,
  • opts: String,
  • status: String
  • ): MutationResult!
  • # Delete data droplet entry
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteDataDropletEntry(org: Uuid!, id: Uuid!): MutationResult!
  • # Droplet entry create or update
  • #
  • # Arguments
  • # org: Org id for the query
  • # dropletHandle: [Not documented]
  • # dropletName: [Not documented]
  • # name: [Not documented]
  • # content: [Not documented]
  • # notes: [Not documented]
  • # rule: [Not documented]
  • # opts: [Not documented]
  • createOrUpdateDataDropletEntry(
  • org: Uuid!,
  • dropletHandle: String,
  • dropletName: String,
  • name: String,
  • content: String,
  • notes: String,
  • rule: String,
  • opts: String
  • ): MutationResult!
  • # Environment variable create or update
  • #
  • # Arguments
  • # org: Org id for the query
  • # variable: [Not documented]
  • createEnvironmentVariable(
  • org: Uuid!,
  • variable: EnvironmentVariableMutation!
  • ): MutationResult!
  • # Environment variable create or update
  • #
  • # Arguments
  • # org: Org id for the query
  • # id: [Not documented]
  • # variable: [Not documented]
  • updateEnvironmentVariable(
  • org: Uuid!,
  • id: Uuid!,
  • variable: EnvironmentVariableMutation!
  • ): MutationResult!
  • # Environment variable create or update
  • #
  • # Arguments
  • # org: Org id for the query
  • # id: [Not documented]
  • deleteEnvironmentVariable(org: Uuid!, id: Uuid!): MutationResult!
  • # Delete resource
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteResource(org: Uuid!, id: Uuid!): MutationResult!
  • # Create resource
  • #
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # status: [Not documented]
  • # handle: [Not documented]
  • # query: [Not documented]
  • # tracker: [Not documented]
  • # algorithm: [Not documented]
  • createResource(
  • org: Uuid!,
  • name: String,
  • description: String,
  • status: String,
  • handle: String,
  • query: String,
  • tracker: String,
  • algorithm: String
  • ): MutationResult!
  • # Update resource
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # status: [Not documented]
  • # handle: [Not documented]
  • # query: [Not documented]
  • # tracker: [Not documented]
  • # algorithm: [Not documented]
  • updateResource(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • description: String,
  • status: String,
  • handle: String,
  • query: String,
  • tracker: String,
  • algorithm: String
  • ): MutationResult!
  • # Create resource
  • #
  • # Arguments
  • # org: [Not documented]
  • # resourceId: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # status: [Not documented]
  • # query: [Not documented]
  • # priority: [Not documented]
  • # periodStart: [Not documented]
  • # periodEnd: [Not documented]
  • # timeExpression: [Not documented]
  • # timezone: [Not documented]
  • createResourceAvailability(
  • org: Uuid!,
  • resourceId: Uuid!,
  • name: String,
  • description: String,
  • status: String,
  • query: String,
  • priority: Int,
  • periodStart: DateTime,
  • periodEnd: DateTime,
  • timeExpression: String,
  • timezone: String
  • ): MutationResult!
  • # Update resource
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # status: [Not documented]
  • # query: [Not documented]
  • # priority: [Not documented]
  • # periodStart: [Not documented]
  • # periodEnd: [Not documented]
  • # timeExpression: [Not documented]
  • # timezone: [Not documented]
  • updateResourceAvailability(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • description: String,
  • status: String,
  • query: String,
  • priority: Int,
  • periodStart: DateTime,
  • periodEnd: DateTime,
  • timeExpression: String,
  • timezone: String
  • ): MutationResult!
  • # Delete resource
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteResourceAvailability(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # id: Notification Id
  • deleteIntegration(org: Uuid!, id: Uuid!): MutationResult!
  • # Create integration
  • #
  • # Arguments
  • # org: Org id for the query
  • # status: [Not documented]
  • # service: [Not documented]
  • # action: [Not documented]
  • # configuration: [Not documented]
  • createIntegration(
  • org: Uuid!,
  • status: String,
  • service: String,
  • action: String,
  • configuration: String
  • ): MutationResult!
  • # Update integration
  • #
  • # Arguments
  • # id: [Not documented]
  • # org: Org id for the query
  • # status: [Not documented]
  • # service: [Not documented]
  • # action: [Not documented]
  • # configuration: [Not documented]
  • updateIntegration(
  • id: Uuid!,
  • org: Uuid!,
  • status: String,
  • service: String,
  • action: String,
  • configuration: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createBucket(org: Uuid!, m: BucketMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateBucket(org: Uuid!, id: Uuid!, m: BucketMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • removeBucket(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # security: [Not documented]
  • createRoom(org: Uuid!, name: String, security: String): MeetingRoom!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # security: [Not documented]
  • # start: [Not documented]
  • # duration: [Not documented]
  • createReservation(
  • org: Uuid!,
  • name: String,
  • security: String,
  • start: DateTime,
  • duration: Int
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # entity: [Not documented]
  • # entityId: [Not documented]
  • # groupId: [Not documented]
  • addLink(org: Uuid!, entity: String!, entityId: Uuid!, groupId: Uuid!): Boolean!
  • # Arguments
  • # org: [Not documented]
  • # entity: [Not documented]
  • # entityId: [Not documented]
  • # groupId: [Not documented]
  • removeLink(org: Uuid!, entity: String!, entityId: Uuid!, groupId: Uuid!): Boolean!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # color: [Not documented]
  • # status: [Not documented]
  • # handle: [Not documented]
  • # permission: [Not documented]
  • # kind: [Not documented]
  • createLabel(
  • org: Uuid!,
  • name: String,
  • description: String,
  • color: String,
  • status: String,
  • handle: String,
  • permission: String,
  • kind: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # color: [Not documented]
  • # status: [Not documented]
  • # handle: [Not documented]
  • # permission: [Not documented]
  • # kind: [Not documented]
  • updateLabel(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • description: String,
  • color: String,
  • status: String,
  • handle: String,
  • permission: String,
  • kind: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteLabel(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createPaymentMethod(org: Uuid!, m: PaymentMethodMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: Id to modify
  • # m: [Not documented]
  • updatePaymentMethod(
  • org: Uuid!,
  • id: Uuid!,
  • m: PaymentMethodMutation!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deletePaymentMethod(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createScript(org: Uuid!, m: ScriptMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateScript(org: Uuid!, id: Uuid!, m: ScriptMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteScript(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # mode: [Not documented]
  • # logLevel: [Not documented]
  • invokeScript(org: Uuid!, id: Uuid!, mode: String!, logLevel: String!): ScriptResult
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # displayName: [Not documented]
  • # status: [Not documented]
  • # icon: [Not documented]
  • # color: [Not documented]
  • # handle: [Not documented]
  • # share: [Not documented]
  • # config: [Not documented]
  • createSwimlane(
  • org: Uuid!,
  • name: String,
  • displayName: String,
  • status: String,
  • icon: String,
  • color: String,
  • handle: String,
  • share: String,
  • config: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # displayName: [Not documented]
  • # status: [Not documented]
  • # icon: [Not documented]
  • # color: [Not documented]
  • # handle: [Not documented]
  • # share: [Not documented]
  • # config: [Not documented]
  • updateSwimlane(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • displayName: String,
  • status: String,
  • icon: String,
  • color: String,
  • handle: String,
  • share: String,
  • config: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteSwimlane(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # document: [Not documented]
  • # status: [Not documented]
  • # kind: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # location: [Not documented]
  • # order: [Not documented]
  • # handle: [Not documented]
  • # classification: [Not documented]
  • # builder: [Not documented]
  • # share: [Not documented]
  • # displayName: [Not documented]
  • # version: [Not documented]
  • # folder: [Not documented]
  • createLayout(
  • org: Uuid!,
  • document: String,
  • status: String,
  • kind: String,
  • name: String,
  • description: String,
  • location: String,
  • order: Int,
  • handle: String,
  • classification: String,
  • builder: String,
  • share: String,
  • displayName: String,
  • version: String,
  • folder: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # document: [Not documented]
  • # status: [Not documented]
  • # kind: [Not documented]
  • # name: [Not documented]
  • # description: [Not documented]
  • # location: [Not documented]
  • # order: [Not documented]
  • # handle: [Not documented]
  • # classification: [Not documented]
  • # builder: [Not documented]
  • # share: [Not documented]
  • # displayName: [Not documented]
  • # version: [Not documented]
  • # folder: [Not documented]
  • updateLayout(
  • org: Uuid!,
  • id: Uuid!,
  • document: String,
  • status: String,
  • kind: String,
  • name: String,
  • description: String,
  • location: String,
  • order: Int,
  • handle: String,
  • classification: String,
  • builder: String,
  • share: String,
  • displayName: String,
  • version: String,
  • folder: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # from: [Not documented]
  • # to: [Not documented]
  • # query: [Not documented]
  • updateLayoutClassification(
  • org: Uuid!,
  • from: String!,
  • to: String!,
  • query: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteLayout(org: Uuid!, id: Uuid!): MutationResult!
  • # Create user using email or add to org if already existing
  • #
  • # Arguments
  • # org: [Not documented]
  • # email: Email address; this is the unique identifier
  • # first: [Not documented]
  • # last: [Not documented]
  • # mobile: Mobile number with country code
  • # name: Name if different than first last
  • # groupId: Group id if desired
  • # externalId: Optional external id for this org
  • # orgTitle: Optional title for this org
  • # gender: Users gender: male|female|other
  • # genderDetail: More detail if gender is other
  • # dob: Date of birth
  • # timezone: Timezone in tz database format
  • # createdAt: Creation date override; for use when importing
  • # existing users
  • # username: Username (BETA); not required, must be globally
  • # unique if provided
  • createUser(
  • org: Uuid!,
  • email: String!,
  • first: String!,
  • last: String!,
  • mobile: String,
  • name: String,
  • groupId: Uuid,
  • externalId: String,
  • orgTitle: String,
  • gender: String,
  • genderDetail: String,
  • dob: LocalDate,
  • timezone: String,
  • createdAt: DateTime,
  • username: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • addUserToOrg(org: Uuid!, userId: Uuid!): MutationResult!
  • # Arguments
  • # email: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • # mobile: [Not documented]
  • # name: [Not documented]
  • # externalId: [Not documented]
  • updateUser(
  • email: String!,
  • first: String!,
  • last: String!,
  • mobile: String,
  • name: String,
  • externalId: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # userId: User belonging to the org
  • # image: 512 x 512 png or jpg image in Base64 format
  • updateProfileImage(org: Uuid!, userId: Uuid!, image: String!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # status: [Not documented]
  • # kind: [Not documented]
  • # handle: [Not documented]
  • # description: [Not documented]
  • createGroup(
  • org: Uuid!,
  • name: String,
  • status: String,
  • kind: String,
  • handle: String,
  • description: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # status: [Not documented]
  • # kind: [Not documented]
  • # handle: [Not documented]
  • # description: [Not documented]
  • updateGroup(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • status: String,
  • kind: String,
  • handle: String,
  • description: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteGroup(org: Uuid!, id: Uuid!): String!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # displayName: [Not documented]
  • # status: [Not documented]
  • # color: [Not documented]
  • # displayFormat: [Not documented]
  • # displayExpression: [Not documented]
  • # icon: [Not documented]
  • # description: [Not documented]
  • # headerFormat: [Not documented]
  • # serviceName: [Not documented]
  • # serviceAction: [Not documented]
  • # hasBody: [Not documented]
  • # schemaText: [Not documented]
  • # handle: [Not documented]
  • # share: [Not documented]
  • # notificationIcon: [Not documented]
  • # config: [Not documented]
  • # notificationTemplate: [Not documented]
  • # handleGroup: [Not documented]
  • createTracker(
  • org: Uuid!,
  • name: String,
  • displayName: String,
  • status: String,
  • color: String,
  • displayFormat: String,
  • displayExpression: String,
  • icon: String,
  • description: String,
  • headerFormat: String,
  • serviceName: String,
  • serviceAction: String,
  • hasBody: String,
  • schemaText: String,
  • handle: String,
  • share: String,
  • notificationIcon: String,
  • config: String,
  • notificationTemplate: String,
  • handleGroup: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # displayName: [Not documented]
  • # status: [Not documented]
  • # color: [Not documented]
  • # displayFormat: [Not documented]
  • # displayExpression: [Not documented]
  • # icon: [Not documented]
  • # description: [Not documented]
  • # headerFormat: [Not documented]
  • # serviceName: [Not documented]
  • # serviceAction: [Not documented]
  • # hasBody: [Not documented]
  • # schemaText: [Not documented]
  • # handle: [Not documented]
  • # share: [Not documented]
  • # config: [Not documented]
  • # notificationIcon: [Not documented]
  • # notificationTemplate: [Not documented]
  • # handleGroup: [Not documented]
  • updateTracker(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • displayName: String,
  • status: String,
  • color: String,
  • displayFormat: String,
  • displayExpression: String,
  • icon: String,
  • description: String,
  • headerFormat: String,
  • serviceName: String,
  • serviceAction: String,
  • hasBody: String,
  • schemaText: String,
  • handle: String,
  • share: String,
  • config: String,
  • notificationIcon: String,
  • notificationTemplate: String,
  • handleGroup: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteTracker(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # timezone: [Not documented]
  • # cron: [Not documented]
  • # triggerUid: [Not documented]
  • # trigger: [Not documented]
  • # status: [Not documented]
  • # options: [Not documented]
  • createJob(
  • org: Uuid!,
  • name: String,
  • timezone: String,
  • cron: String,
  • triggerUid: Uuid,
  • trigger: String,
  • status: String,
  • options: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # timezone: [Not documented]
  • # cron: [Not documented]
  • # triggerUid: [Not documented]
  • # trigger: [Not documented]
  • # status: [Not documented]
  • # options: [Not documented]
  • updateJob(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • timezone: String,
  • cron: String,
  • triggerUid: Uuid,
  • trigger: String,
  • status: String,
  • options: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteJob(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # display: [Not documented]
  • # document: [Not documented]
  • # status: [Not documented]
  • # parent: [Not documented]
  • # handle: [Not documented]
  • # mode: [Not documented]
  • # uri: [Not documented]
  • # config: [Not documented]
  • # dispatchQuery: [Not documented]
  • # format: [Not documented]
  • # sortOrder: [Not documented]
  • # sortChildren: [Not documented]
  • # displayName: [Not documented]
  • # share: [Not documented]
  • createPage(
  • org: Uuid!,
  • name: String,
  • display: String,
  • document: String,
  • status: String,
  • parent: Uuid,
  • handle: String,
  • mode: String,
  • uri: String,
  • config: String,
  • dispatchQuery: String,
  • format: String,
  • sortOrder: Int,
  • sortChildren: String,
  • displayName: String,
  • share: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # name: [Not documented]
  • # display: [Not documented]
  • # document: [Not documented]
  • # status: [Not documented]
  • # parent: [Not documented]
  • # handle: [Not documented]
  • # mode: [Not documented]
  • # uri: [Not documented]
  • # config: [Not documented]
  • # dispatchQuery: [Not documented]
  • # format: [Not documented]
  • # sortOrder: [Not documented]
  • # sortChildren: [Not documented]
  • # displayName: [Not documented]
  • # share: [Not documented]
  • updatePage(
  • org: Uuid!,
  • id: Uuid!,
  • name: String,
  • display: String,
  • document: String,
  • status: String,
  • parent: Uuid,
  • handle: String,
  • mode: String,
  • uri: String,
  • config: String,
  • dispatchQuery: String,
  • format: String,
  • sortOrder: Int,
  • sortChildren: String,
  • displayName: String,
  • share: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deletePage(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createInvite(org: Uuid!, m: InviteMutation!): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateInvite(org: Uuid!, id: Uuid!, m: InviteMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteInvite(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # access: [Not documented]
  • # entity: [Not documented]
  • # text: [Not documented]
  • # status: [Not documented]
  • # name: [Not documented]
  • # handle: [Not documented]
  • createSchema(
  • org: Uuid!,
  • access: String,
  • entity: String,
  • text: String,
  • status: String,
  • name: String,
  • handle: String
  • ): Uuid!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # access: [Not documented]
  • # entity: [Not documented]
  • # text: [Not documented]
  • # status: [Not documented]
  • # name: [Not documented]
  • # handle: [Not documented]
  • updateSchema(
  • org: Uuid!,
  • id: Uuid!,
  • access: String,
  • entity: String,
  • text: String,
  • status: String,
  • name: String,
  • handle: String
  • ): String!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteSchema(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # primaryColor: [Not documented]
  • # secondaryColor: [Not documented]
  • # headerColor: [Not documented]
  • # brandStatus: [Not documented]
  • # parentId: [Not documented]
  • # fontColor: [Not documented]
  • # imageColor: [Not documented]
  • # options: [Not documented]
  • # displayName: [Not documented]
  • # actionColor: [Not documented]
  • # navColor: [Not documented]
  • # permissionDefault: [Not documented]
  • # description: [Not documented]
  • # address: [Not documented]
  • # phone: [Not documented]
  • # website: [Not documented]
  • updateOrg(
  • org: Uuid!,
  • name: String,
  • primaryColor: String,
  • secondaryColor: String,
  • headerColor: String,
  • brandStatus: String,
  • parentId: Uuid,
  • fontColor: String,
  • imageColor: String,
  • options: String,
  • displayName: String,
  • actionColor: String,
  • navColor: String,
  • permissionDefault: String,
  • description: String,
  • address: String,
  • phone: String,
  • website: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # groupId: [Not documented]
  • addGroupMembership(org: Uuid!, userId: Uuid!, groupId: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # groupId: [Not documented]
  • removeGroupMembership(
  • org: Uuid!,
  • userId: Uuid!,
  • groupId: Uuid!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # labelId: [Not documented]
  • addUserLabel(org: Uuid!, userId: Uuid!, labelId: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # labelId: [Not documented]
  • removeUserLabel(org: Uuid!, userId: Uuid!, labelId: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # m: [Not documented]
  • updateMember(org: Uuid!, userId: Uuid!, m: UpdateMemberMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # name: [Not documented]
  • # primaryColor: [Not documented]
  • # secondaryColor: [Not documented]
  • # navColor: [Not documented]
  • # headerColor: [Not documented]
  • # fontColor: [Not documented]
  • # imageColor: [Not documented]
  • # displayName: [Not documented]
  • # permissionDefault: [Not documented]
  • createChildOrg(
  • org: Uuid!,
  • name: String!,
  • primaryColor: String!,
  • secondaryColor: String!,
  • navColor: String!,
  • headerColor: String!,
  • fontColor: String,
  • imageColor: String,
  • displayName: String,
  • permissionDefault: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # orgId: [Not documented]
  • # userId: [Not documented]
  • # role: [Not documented]
  • # externalId: [Not documented]
  • addOrgMember(
  • org: Uuid!,
  • orgId: Uuid,
  • userId: Uuid!,
  • role: String!,
  • externalId: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • addApiKey(org: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # status: [Not documented]
  • updateApiKey(org: Uuid!, id: Uuid!, status: String!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteApiKey(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteDispatch(org: Uuid!, id: String!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # entityId: [Not documented]
  • # entityKind: [Not documented]
  • # startDate: [Not documented]
  • # endDate: [Not documented]
  • # name: [Not documented]
  • # tz: [Not documented]
  • # status: [Not documented]
  • # trackerId: [Not documented]
  • # options: [Not documented]
  • createDispatchCluster(
  • org: Uuid!,
  • entityId: Uuid,
  • entityKind: String,
  • startDate: LocalDate,
  • endDate: LocalDate,
  • name: String,
  • tz: String,
  • status: String,
  • trackerId: Uuid,
  • options: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # entityId: [Not documented]
  • # entityKind: [Not documented]
  • # startDate: [Not documented]
  • # endDate: [Not documented]
  • # name: [Not documented]
  • # tz: [Not documented]
  • # status: [Not documented]
  • # trackerId: [Not documented]
  • # options: [Not documented]
  • updateDispatchCluster(
  • org: Uuid!,
  • id: Uuid!,
  • entityId: Uuid,
  • entityKind: String,
  • startDate: LocalDate,
  • endDate: LocalDate,
  • name: String,
  • tz: String,
  • status: String,
  • trackerId: Uuid,
  • options: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteDispatchCluster(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # body: [Not documented]
  • # startTime: [Not documented]
  • # endTime: [Not documented]
  • # dayMask: [Not documented]
  • # dispatchClusterId: [Not documented]
  • addClusterEntryToCluster(
  • org: Uuid!,
  • body: String,
  • startTime: Int,
  • endTime: Int,
  • dayMask: Int,
  • dispatchClusterId: Uuid!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # body: [Not documented]
  • # startTime: [Not documented]
  • # endTime: [Not documented]
  • # dayMask: [Not documented]
  • # dispatchClusterId: [Not documented]
  • updateClusterEntry(
  • org: Uuid!,
  • id: Uuid!,
  • body: String,
  • startTime: Int,
  • endTime: Int,
  • dayMask: Int,
  • dispatchClusterId: Uuid!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # dispatchClusterId: [Not documented]
  • deleteClusterEntry(
  • org: Uuid!,
  • id: Uuid!,
  • dispatchClusterId: Uuid!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # query: [Not documented]
  • # name: [Not documented]
  • # status: [Not documented]
  • # userId: [Not documented]
  • # kind: [Not documented]
  • # locationPath: [Not documented]
  • # subject: [Not documented]
  • # displayName: [Not documented]
  • # handle: [Not documented]
  • createExport(
  • org: Uuid!,
  • query: String,
  • name: String,
  • status: String,
  • userId: Uuid,
  • kind: String,
  • locationPath: String,
  • subject: String,
  • displayName: String,
  • handle: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # query: [Not documented]
  • # name: [Not documented]
  • # status: [Not documented]
  • # userId: [Not documented]
  • # kind: [Not documented]
  • # locationPath: [Not documented]
  • # subject: [Not documented]
  • # displayName: [Not documented]
  • # handle: [Not documented]
  • updateExport(
  • org: Uuid!,
  • id: Uuid!,
  • query: String,
  • name: String,
  • status: String,
  • userId: Uuid,
  • kind: String,
  • locationPath: String,
  • subject: String,
  • displayName: String,
  • handle: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteExport(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createProgramKind(org: Uuid!, m: ProgramKindMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateProgramKind(org: Uuid!, id: Uuid!, m: ProgramKindMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteProgramKind(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # programKind: [Not documented]
  • # status: [Not documented]
  • # name: [Not documented]
  • # handle: [Not documented]
  • # document: [Not documented]
  • # startDate: [Not documented]
  • # mode: [Not documented]
  • # catalog: [Not documented]
  • # parentId: [Not documented]
  • createProgram(
  • org: Uuid!,
  • programKind: Uuid,
  • status: String,
  • name: String,
  • handle: String,
  • document: String,
  • startDate: LocalDate,
  • mode: String,
  • catalog: String,
  • parentId: Uuid
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # programKind: [Not documented]
  • # status: [Not documented]
  • # name: [Not documented]
  • # handle: [Not documented]
  • # document: [Not documented]
  • # startDate: [Not documented]
  • # mode: [Not documented]
  • # catalog: [Not documented]
  • # parentId: [Not documented]
  • updateProgram(
  • org: Uuid!,
  • id: Uuid!,
  • programKind: Uuid,
  • status: String,
  • name: String,
  • handle: String,
  • document: String,
  • startDate: LocalDate,
  • mode: String,
  • catalog: String,
  • parentId: Uuid
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • deleteProgram(org: Uuid!, id: Uuid!): MutationResult!
  • # Adds or updates a user - will not double add
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programId: [Not documented]
  • # cohortId: [Not documented]
  • # role: [Not documented]
  • # state: [Not documented]
  • # startDate: [Not documented]
  • addParticipant(
  • org: Uuid!,
  • userId: Uuid!,
  • programId: Uuid!,
  • cohortId: Uuid,
  • role: String,
  • state: String,
  • startDate: LocalDate
  • ): MutationResult!
  • # Update participant state
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programId: [Not documented]
  • # cohortId: [Not documented]
  • # state: [Not documented]
  • # comments: [Not documented]
  • # stateDetail: [Not documented]
  • updateParticipantState(
  • org: Uuid!,
  • userId: Uuid!,
  • programId: Uuid!,
  • cohortId: Uuid!,
  • state: String!,
  • comments: String,
  • stateDetail: String
  • ): MutationResult!
  • # Update participant state
  • #
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programId: [Not documented]
  • # cohortId: [Not documented]
  • # state: [Not documented]
  • # comments: [Not documented]
  • # stateDetail: [Not documented]
  • updateParticipantState2(
  • org: Uuid!,
  • userId: Uuid!,
  • programId: Uuid!,
  • cohortId: Uuid,
  • state: String!,
  • comments: String,
  • stateDetail: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programId: [Not documented]
  • # cohortId: [Not documented]
  • # role: [Not documented]
  • # state: [Not documented]
  • updateParticipant(
  • org: Uuid!,
  • userId: Uuid!,
  • programId: Uuid!,
  • cohortId: Uuid,
  • role: String,
  • state: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programId: [Not documented]
  • removeParticipant(org: Uuid!, userId: Uuid!, programId: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # programId: [Not documented]
  • # cohortId: [Not documented]
  • # role: [Not documented]
  • clearParticipantCohort(
  • org: Uuid!,
  • userId: Uuid!,
  • programId: Uuid!,
  • cohortId: Uuid!,
  • role: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # attachmentId: [Not documented]
  • # entityId: [Not documented]
  • # entityType: [Not documented]
  • createAttachmentRelation(
  • org: Uuid!,
  • attachmentId: Uuid!,
  • entityId: Uuid!,
  • entityType: String!
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: Attachment relation id
  • deleteAttachmentRelation(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # entity: [Not documented]
  • # entityId: [Not documented]
  • # reminderDt: [Not documented]
  • # reminderTz: [Not documented]
  • # condition: [Not documented]
  • # updateCondition: [Not documented]
  • # reminderDelay: [Not documented]
  • applyCondition(
  • org: Uuid!,
  • entity: String!,
  • entityId: Uuid!,
  • reminderDt: Int,
  • reminderTz: String,
  • condition: String,
  • updateCondition: String,
  • reminderDelay: Int
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # programId: [Not documented]
  • # handle: [Not documented]
  • # name: [Not documented]
  • addCohort(org: Uuid!, programId: Uuid!, handle: String!, name: String): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # programId: [Not documented]
  • # handle: [Not documented]
  • # name: [Not documented]
  • updateCohort(
  • org: Uuid!,
  • id: Uuid!,
  • programId: Uuid!,
  • handle: String!,
  • name: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # programId: [Not documented]
  • # id: [Not documented]
  • deleteCohort(org: Uuid!, programId: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createDispatch(org: Uuid!, m: DispatchMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # when: [Not documented]
  • # trackerId: [Not documented]
  • # trackerHandle: [Not documented]
  • # body: [Not documented]
  • # blocks: [Not documented]
  • # data: [Not documented]
  • # taskState: [Not documented]
  • # taskStatus: [Not documented]
  • # batchId: [Not documented]
  • # serviceId: [Not documented]
  • # schemaId: [Not documented]
  • # schemaRevision: [Not documented]
  • # startTime: [Not documented]
  • # endTime: [Not documented]
  • # attachments: [Not documented]
  • # taskTracker: [Not documented]
  • # authorId: [Not documented]
  • # useDate: [Not documented]
  • createUserDispatchAsAdmin(
  • org: Uuid!,
  • userId: Uuid!,
  • when: LocalDate,
  • trackerId: Uuid,
  • trackerHandle: String,
  • body: String,
  • blocks: String,
  • data: String,
  • taskState: String,
  • taskStatus: String,
  • batchId: String,
  • serviceId: String,
  • schemaId: Uuid,
  • schemaRevision: Uuid,
  • startTime: DateTime,
  • endTime: DateTime,
  • attachments: [Uuid!],
  • taskTracker: Uuid,
  • authorId: Uuid!,
  • useDate: DateTime
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # userId: [Not documented]
  • # when: [Not documented]
  • # id: [Not documented]
  • # trackerId: [Not documented]
  • # body: [Not documented]
  • # blocks: [Not documented]
  • # data: [Not documented]
  • # taskState: [Not documented]
  • # taskStatus: [Not documented]
  • # batchId: [Not documented]
  • # serviceId: [Not documented]
  • # schemaId: [Not documented]
  • # schemaRevision: [Not documented]
  • # startTime: [Not documented]
  • # endTime: [Not documented]
  • # attachments: [Not documented]
  • # taskTracker: [Not documented]
  • # authorId: [Not documented]
  • # useDate: [Not documented]
  • updateUserDispatchAsAdmin(
  • org: Uuid!,
  • userId: Uuid!,
  • when: LocalDate,
  • id: Uuid!,
  • trackerId: Uuid,
  • body: String,
  • blocks: String,
  • data: String,
  • taskState: String,
  • taskStatus: String,
  • batchId: String,
  • serviceId: String,
  • schemaId: Uuid,
  • schemaRevision: Uuid,
  • startTime: DateTime,
  • endTime: DateTime,
  • attachments: [Uuid!],
  • taskTracker: Uuid,
  • authorId: Uuid!,
  • useDate: DateTime
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # fromUserId: [Not documented]
  • # toUserId: [Not documented]
  • addFollower(org: Uuid!, fromUserId: Uuid!, toUserId: Uuid!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # id: Notification Id
  • deleteNotification(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # clip: [Not documented]
  • createQueryClip(org: Uuid!, clip: QueryClipMutation!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # id: [Not documented]
  • # clip: [Not documented]
  • updateQueryClip(org: Uuid!, id: Uuid!, clip: QueryClipMutation!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # id: [Not documented]
  • deleteQueryClip(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # m: [Not documented]
  • addCohortSwimlane(org: Uuid!, m: SwimlaneCohortMutation!): MutationResult!
  • # Arguments
  • # org: Org id for the query
  • # m: [Not documented]
  • removeCohortSwimlane(org: Uuid!, m: SwimlaneCohortMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createAccount(org: Uuid!, m: AccountMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateAccount(org: Uuid!, id: Uuid!, m: AccountMutation!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • removeAccount(org: Uuid!, id: Uuid!): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # accountId: [Not documented]
  • # userId: [Not documented]
  • # role: [Not documented]
  • addUserToAccount(
  • org: Uuid!,
  • accountId: Uuid!,
  • userId: Uuid!,
  • role: String
  • ): MutationResult!
  • # Arguments
  • # org: [Not documented]
  • # accountId: [Not documented]
  • # userId: [Not documented]
  • removeUserFromAccount(
  • org: Uuid!,
  • accountId: Uuid!,
  • userId: Uuid!
  • ): MutationResult!
  • # Apply validation
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • applyValidation(org: Uuid!, m: ValidationMutation!): MutationResult!
  • # Create entity folder
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • createFolder(org: Uuid!, m: EntityFolderMutation!): MutationResult!
  • # Update entity folder
  • #
  • # Arguments
  • # org: [Not documented]
  • # id: [Not documented]
  • # m: [Not documented]
  • updateFolder(org: Uuid!, id: Uuid!, m: EntityFolderMutation!): MutationResult!
  • # Move item to folder
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • moveToFolder(org: Uuid!, m: EntityFolderMoveMutation!): MutationResult!
  • # Move item to folder
  • #
  • # Arguments
  • # org: [Not documented]
  • # m: [Not documented]
  • renameEntity(org: Uuid!, m: EntityUpdateMutation!): MutationResult!
  • # Remove folder
  • #
  • # Arguments
  • # org: [Not documented]
  • # kind: [Not documented]
  • # folder: [Not documented]
  • removeFolder(org: Uuid!, kind: String!, folder: String!): MutationResult!
  • }

link Require by

This element is not required by anyone