#import "~/graphql_shared/fragments/label.fragment.graphql" query issueLabels($fullPath: ID!, $iid: String) { workspace: project(fullPath: $fullPath) { id issuable: issue(iid: $iid) { id labels { nodes { ...Label } } } } }