• DeleteWorkItemFields

    This input object captures the arguments to the deleteWorkItem mutation. Multiple instances can be passed to deleteWorkItems when it is more convenient (for example, when the number of work items to be deleted isn’t known until runtime). Fields app (String!) The api name of the app to delete the work item from. type (String!) The template…

  • CreateWorkItemFields

    This input object captures the arguments to the createWorkItem mutation. Multiple instances can be passed to createWorkItems when it is more convenient (for example, when the number of work items to be created isn’t known until runtime). Fields app (String!) The api name of the app to create the work item instance in. type (String!) The…

  • AttributeValueUpdate

    This object is used when setting attribute values, either when creating or updating work items. Fields attribute (String!) The api name of the attribute to update. value (String!) The value to set the attribute to.

  • TemplateAttributeType

    This enum represents the types of attributes supported by Shibumi. Each value of this enum corresponds to a concrete TemplateAttribute type. Values association Corresponds to AssociationAttribute backreference Corresponds to BackreferenceAttribute boolean Corresponds to BooleanAttribute date Corresponds to DateAttribute metric Corresponds to MetricAttribute number Corresponds to NumberAttribute picklist Corresponds to PickListAttribute text Corresponds to TextAttribute url Corresponds to UrlAttribute

  • TemplateAttributePickListValueType

    This enum represents the datatype used for a name / value picklist’s values. Values number The value is a number. text The value can be any text.

  • TemplateAttributeNumberFormat

    This enum represents various units that a numeric or date attribute can measure. Many of these need to be formatted differently in the client to provide an optimal user experience. Note that Shibumi does not provide any automatic conversion between these units; these values are used for display and formatting purposes only….

  • Frequency

    This enum represents the frequencies that a key performance indicator can record data at. Values asof Like daily, but has unique data entry and aggregation properties. For more information, consult the Shibumi Support site. daily The key performance indicator records a separate value for each day. monthly The key performance indicator records a…

  • AttachmentActivityType

    This enum represents the four different kinds of attachment activity that warrant an audit item. upload Indicating that a document was uploaded to a list on a template, work item, dashboard, or presentation. download Indicating that a document was downloaded. remove Indicating that a document was removed from a list but not deleted…

  • Viewable

    Represents shared fields for objects that can be viewed and audited. Implemented by Dashboard Presentation Report WorkItem Fields id (ID!) The identifier for a viewable object. Note that this id is not globally unique. For example, for work items, it is only unique among items sharing the same template. name (String) The name given…

  • TemplateAttribute

    This interface is implemented by concrete types representing the types of attributes that can be configured on a template. Implemented by BooleanAttribute DateAttribute MetricAttribute NumberAttribute PickListAttribute TextAttribute UrlAttribute Fields apiName (String!) The api name for this attribute. The api name uniquely identifies this attribute within its template, and it can be…