Initial commit

This commit is contained in:
2025-07-21 20:35:19 +00:00
commit f10bf53522
29 changed files with 22699 additions and 0 deletions

View File

@ -0,0 +1,16 @@
/* eslint-disable no-mixed-spaces-and-tabs */
'use strict';
import { Field, ObjectType } from 'type-graphql';
@ObjectType()
export class Test {
@Field(() => String)
text?: string;
}
@ObjectType()
export class TestMutation {
@Field(() => String)
text?: string;
}