# KGRelationship

**Kind:** Database Model

**Source:** [`atloria-monorepo/libs/database/prisma/schema.prisma`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/database/prisma/schema.prisma#L751)

## Fields

| Field | Type | Required | Key |
|---|---|---|---|
| `id` | `String` | ✓ | PK |
| `sourceId` | `String` | ✓ |  |
| `targetId` | `String` | ✓ |  |
| `type` | `String` | ✓ |  |
| `metadata` | `Json` | ✓ |  |

## Diagram

```mermaid
erDiagram
    KGRelationship {
        id String [PK]
        sourceId String
        targetId String
        type String
        metadata Json
    }
```

## Referenced By

- `KGEntity` (HAS_ONE)
- `KGEntity` (HAS_ONE)
