• AttachmentAudit

    This object represents an audit item for any user activity with an attached document. The following events generate an attachment audit item: Uploading a document Downloading a document Removing a document from a list or view without deleting the document entirely Deleting a document from the Attachments tab on a…

  • AssociationAttribute

    Template attributes of this type represent association values. Implements TemplateAttribute Fields apiName (String!) The api name for this attribute. The api name uniquely identifies this attribute within its template, and it can be used to refer to the attribute from expressions. name (String) The human-readable name of the attribute. This may not…

  • AssociatedWorkItem

    This type is returned when following an association to fetch a work item. It’s possible that the current user has access to the base work item, but not the associated item. In that case, they should still be able to see the associated item’s name and url. This type allows…

  • App

    This object allows users to fetch data within a single Shibumi app. Fields name (String!) The app’s human-readable name. apiName (String!) The app’s api name. This name uniquely identifies the app. workItem (WorkItem) Query information about a specific work item. Example: { app(apiName: “App_1__app”) { workItem(type: “Program__t” id: “1”) { id url startDate:…

  • updateWorkItems

    This mutation allows bulk updating of multiple work items. Query updateWorkItems ([WorkItem!]!) Bulk creates multiple work items. Work items are updated and returned in the same order as the argument. Argument Type Description items [UpdateWorkItemFields!]! A list of arguments to pass to updateWorkItem. See that page for more details. Examples Bulk updating…

  • updateWorkItem

    This mutation updates an existing work item. Query updateWorkItem (WorkItem!) Updates a single work item. Argument Type Description app String! The api name of the app to update the work item instance in. type String! The template api name of the item to update. id ID! The id of the item…

  • disableUser

    This mutation allows Enterprise Admins to disable users within their Enterprise. Query disableUser(name:”email address”) Disables the defined user based on the email address provided. Query can only be run by an Enterprise Administrator. Argument Type Description name String! The email address of the user to disable. Example Disabling a user…

  • deleteWorkItems

    This mutation allows bulk deleting of multiple work items. Query deleteWorkItems ([WorkItemDeleteResponse!]!) Bulk deletes multiple work items. When a work item is deleted, its descendants at all levels are also deleted. For safety, this mutation will not delete work items with more than 1000 descendants. This is an attempt to prevent…

  • deleteWorkItem

    This mutation deletes an existing work item. Query deleteWorkItem (WorkItemDeleteResponse!) Deletes a single work item. When a work item is deleted, its descendants at all levels are also deleted. For safety, this mutation will not delete work items with more than 1000 descendants. This is an attempt to prevent the case…

  • createWorkItems

    This mutation allows bulk creating of multiple work items. Query createWorkItems ([WorkItem!]!) Bulk creates multiple work items. Work items are created and returned in the same order as the argument. Argument Type Description items [CreateWorkItemFields!]! A list of arguments to pass to createWorkItem. See that page for more details. Examples Bulk creating…