AssociatedWorkItem

Contents

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 that limited visibility to happen. When a user doesn’t have access to the associated item, the item field will be null, but the other fields will still be returned. When they do have access, the item will be returned and can be used to fetch additional data.

Fields

type (String!)
The api name of the associated item’s template.

id (ID!)
The associated item’s id.

name (String!)
The associated item’s name.

url (String!)
The associated item’s location.

item (WorkItem)
The full work item. This will only be set if the current user has access to the item.

Updated on September 9, 2025

Related Articles