EdgeDefinition
age-schema-client / EdgeDefinition
Interface: EdgeDefinition
Defined in: src/schema/types.ts:40
Edge definition interface
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
label | string | Edge label | src/schema/types.ts:44 |
properties | Record<string, PropertyDefinition> | Edge properties | src/schema/types.ts:49 |
from | string | Source vertex type | src/schema/types.ts:54 |
to | string | Target vertex type | src/schema/types.ts:59 |
fromLabel | string | Source vertex label | src/schema/types.ts:64 |
toLabel | string | Target vertex label | src/schema/types.ts:69 |
required? | string[] | Required properties | src/schema/types.ts:74 |
description? | string | Edge description | src/schema/types.ts:79 |
metadata? | Record<string, unknown> | Additional metadata | src/schema/types.ts:84 |