• 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…

  • createWorkItem

    This mutation creates a new work item. Query createWorkItem (WorkItem!) Creates a single work item. Argument Type Description app String! The api name of the app to create the work item instance in. type String! The api name of the template to instantiate. parent WorkItemReference The optional parent to create the…

  • userDomainSafelistAudit

    In Shibumi, administrators can restrict the set of users who can access their enterprise, by pattern-matching on users’ email addresses. The patterns can be configured via the “Safelist” tab on the Enterprise Administration screen. This query allows administrators to fetch historic changes to the safelisted patterns. This query is only…