Interface EdgeRecordMeta

The metadata for an Edge record in ArcadeDB

interface EdgeRecordMeta {
    @cat: "e";
    @in: string;
    @out: string;
    @rid: string;
    @type: string;
}

Hierarchy

  • RecordMetaBase<"e">
    • EdgeRecordMeta

Properties

Properties

@cat: "e"

The category of the record.

@in: string

The @rid of the vertex the edge goes to

@out: string

The @rid of the vertex the edge comes from

@rid: string

The id of the record.

@type: string

The type of the record.