This commit is contained in:
Claus-Peter Hübner 2023-04-27 20:09:52 +02:00
parent b9d97a3b69
commit 5f5dafa41a
2 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,7 @@ export class Community {
url: string
@Field(() => Date, { nullable: true })
creationDate: Date | null
creationDate: Date | null
@Field(() => String, { nullable: true })
uuid: string | null

View File

@ -1,11 +1,10 @@
import { Community as DbCommunity } from '@entity/Community'
import { FederatedCommunity as DbFederatedCommunity } from '@entity/FederatedCommunity'
import { Community } from '@model/Community'
import { Resolver, Query, Authorized } from 'type-graphql'
import { Community } from '@model/Community'
import { FederatedCommunity } from '@model/FederatedCommunity'
import { RIGHTS } from '@/auth/RIGHTS'
@Resolver()