updated build types

This commit is contained in:
2025-11-17 23:36:15 +03:00
parent f870c2e62e
commit 6a5acd28db
27 changed files with 551 additions and 87 deletions

View File

@@ -1,5 +1,5 @@
import { GraphQLJSONObject } from 'graphql-type-json';
import { Field, Int, InputType } from '@nestjs/graphql';
import { Field, Int, InputType, ObjectType } from '@nestjs/graphql';
@InputType()
export class ListArguments {
@@ -14,4 +14,4 @@ export class ListArguments {
@Field(() => Int, { defaultValue: 10 })
limit: number;
}
}