EntityAssociation

An association type referencing another entity

interface EntityAssociation {
    associationType: "commit" | "repository";
    values: (Repository | Commit)[];
}

Hierarchy

  • Record<string, unknown>
    • EntityAssociation

Properties

associationType: "commit" | "repository"

Defines the association type. Currently supported entities can be found in this field's value enums list.

values: (Repository | Commit)[]

The entity keys that represent the entities to be associated. The number of values counted across all associationTypes must not exceed a limit of 500.