mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
16 lines
409 B
JavaScript
16 lines
409 B
JavaScript
import { v4 as uuid } from 'uuid'
|
|
|
|
export default {
|
|
id: { type: 'string', primary: true, default: uuid },
|
|
url: { type: 'string', uri: true, required: true },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
ownedBy: {
|
|
type: 'relationship',
|
|
relationship: 'OWNED_BY',
|
|
target: 'User',
|
|
direction: 'out',
|
|
eager: true,
|
|
cascade: 'detach',
|
|
},
|
|
}
|