jira.js
    Preparing search index...

    Function findObjectReferenceInfo

    • Find all references for an object

      Parameters

      • client: Client
      • parameters: { id: string }
        • id: string

          The object id to operate on

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              numberOfReferencedObjects: number;
              objectType?: {
                  abstractObjectType: boolean;
                  created: Date;
                  description?: string;
                  globalId: string;
                  icon: {
                      id: string;
                      name: string;
                      url16: string;
                      url48: string;
                      [key: string]: unknown;
                  };
                  id: string;
                  inherited: boolean;
                  name: string;
                  objectCount: number;
                  objectSchemaId: string;
                  parentObjectTypeId?: number;
                  parentObjectTypeInherited: boolean;
                  position: number;
                  type?: number;
                  updated: Date;
                  workspaceId: string;
                  [key: string]: unknown;
              };
              openIssuesExists: boolean;
              referenceTypes?: {
                  cdmData?: {
                      types?: {
                          key?: ...;
                          opinionated?: ...;
                          version?: ...;
                          [key: ...]: ...;
                      }[];
                      [key: string]: unknown;
                  };
                  color?: string;
                  description?: string;
                  globalId: string;
                  id?: string;
                  name: string;
                  objectSchemaId?: string;
                  url16?: string;
                  workspaceId: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          }[],
      >