• DateAttribute

    Template attributes of this type hold simple date 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…

  • Dashboard

    This object represents a Shibumi dashboard. Implements Viewable Fields id (ID!) The unique identifier. name (String) The dashboard’s name url (String) The URL where the dashboard can be accessed. See Also Viewable

  • CSVExportAudit

    This object represents an audit item for each time a user Exports a Shibumi list or view to a CSV file. Fields systemId (String!) Representing the UUID of the work item, template, dashboard, or presentation on which the export activity took place. itemName (String!) Representing the name of work item, template, dashboard,…

  • BooleanAttribute

    Template attributes of this type support two values: “true” and “false”. 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….

  • BackreferenceAttribute

    Template attributes of this type represent association backreferences. Where association attributes allow navigating from the “many” side of a many-to-one association to the “one” side, backreferences do the opposite: they allow navigating from the “one” side to a list of objects on the “many” side. Implements TemplateAttribute Fields apiName (String!) The…

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