Playing with Queries, and Playground

This commit is contained in:
2022-09-08 20:39:24 +02:00
parent 31e7aec64d
commit 2a70074382
8 changed files with 26 additions and 27 deletions

View File

@@ -16,7 +16,8 @@ export class CreateUserInput {
export class User {
id: string;
email: string;
time_joined: number;
password?: Nullable<string>;
time_joined?: Nullable<number>;
}
export abstract class IQuery {