Interface IOntologyEdge

interface IOntologyEdge {
    data?: unknown;
    description?: string;
    failedModels: Record<string, string[]>;
    meta: Meta;
    models: IOntologyModel[];
    name?: string;
    relationship: string;
    to: Record<string, string[]>;
    addChildrenToStore(): void;
    getClass(): string;
    getParent(): undefined | IModel;
    getType(): string;
    getUrl(): string;
    id(): string;
    parse(json: Record<string, unknown>): boolean;
    reload(reloadAll?: boolean): Promise<boolean>;
    removeChild(child: IModel): void;
    setParent(parent?: IModel): void;
    toJSON(customKeys?: string[]): JSONObject;
}

Hierarchy (View Summary)

Implemented by

Properties

data?: unknown
description?: string
failedModels: Record<string, string[]>
meta: Meta
models: IOntologyModel[]
name?: string
relationship: string
to: Record<string, string[]>

Methods