This commit is contained in:
2026-06-24 14:10:53 +02:00
commit fdb3768d63
122 changed files with 13239 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { Collection, getRepository } from 'fireorm'
import { ObjectType, Field, Int } from 'type-graphql'
@ObjectType()
@Collection('inboxes')
export class Inbox {
@Field()
id: string
@Field(() => Int)
userId: number
@Field(() => [String])
conversationIds: string[]
}
export const InboxCol = getRepository(Inbox)