#import "~/graphql_shared/fragments/user.fragment.graphql" query epicParticipants($fullPath: ID!, $iid: ID) { workspace: group(fullPath: $fullPath) { id issuable: epic(iid: $iid) { id participants { nodes { ...User } } } } }