• String

    Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text. String formats A few common types are represented as Strings throughout the API. They have a specific format. Date Values Date values are represented in YYYY-MM-DD format. Date / Time Values Date…

  • Int

    Represents whole numbers (with no decimal component).

  • ID

    Represents a unique identifier. Although it appears as a String in both input and output objects, its format is opaque to users. Users should only compare ids for equality, or pass them in to other GraphQL calls; they should not use them for any other purpose.

  • Float

    Represents a number.

  • Boolean

    Represents true or false values.

  • WorkItemReference

    This input object captures a reference to an existing work item. Fields type (String!) The target work item’s template’s api name. id (ID!) The target work item’s id.

  • UpdateWorkItemFields

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

  • ParticipantUpdate

    This object captures a change in a participant’s status. It can be passed in via mutation to allow changing the set of participants on a work item. This object can be used to assign a role to a user, in which case the role attribute will be set to the desired role….

  • MetricValueUpdate

    This object is used when setting Key Performance Indicator values. It can be used to set both numeric values or expressions for ranges of dates. Fields metric (String!) The api name of the metric to update. dataset (String!) The api name of the dataset to update. Currently “actual__d” and “target__d” are supported….

  • Filter

    This object is used when specifying filters on work item results. The filter field uses the same syntax as view filters in the UI. Fields attribute ([String!]) The api name of the attribute being filtered. filter ([String!]) The value to filter for.