* feat: added query in infra to fetch all shortcodes * feat: added mutation in admin to delete shortcode * chore: added new tests for methods in shortcode module * chore: removed .vscode file * chore: added a new ShortcodeCreator type to output of fetchAllShortcodes query * chore: shortcodeCreator type is now nullable * chore: added type defs to fetchAllShortcodes method in admin module * docs: update code comments * chore: changed target to prod in hoppscotch-old-backend --------- Co-authored-by: Mir Arif Hasan <arif.ishan05@gmail.com>
70 lines
1.4 KiB
TypeScript
70 lines
1.4 KiB
TypeScript
import { Field, ID, ObjectType } from '@nestjs/graphql';
|
|
import { User } from 'src/user/user.model';
|
|
|
|
@ObjectType()
|
|
export class Shortcode {
|
|
@Field(() => ID, {
|
|
description: 'The 12 digit alphanumeric code',
|
|
})
|
|
id: string;
|
|
|
|
@Field({
|
|
description: 'JSON string representing the request data',
|
|
})
|
|
request: string;
|
|
|
|
@Field({
|
|
description: 'JSON string representing the properties for an embed',
|
|
nullable: true,
|
|
})
|
|
properties: string;
|
|
|
|
@Field({
|
|
description: 'Timestamp of when the Shortcode was created',
|
|
})
|
|
createdOn: Date;
|
|
}
|
|
|
|
@ObjectType()
|
|
export class ShortcodeCreator {
|
|
@Field({
|
|
description: 'Uid of user who created the shortcode',
|
|
})
|
|
uid: string;
|
|
|
|
@Field({
|
|
description: 'Email of user who created the shortcode',
|
|
})
|
|
email: string;
|
|
}
|
|
|
|
@ObjectType()
|
|
export class ShortcodeWithUserEmail {
|
|
@Field(() => ID, {
|
|
description: 'The 12 digit alphanumeric code',
|
|
})
|
|
id: string;
|
|
|
|
@Field({
|
|
description: 'JSON string representing the request data',
|
|
})
|
|
request: string;
|
|
|
|
@Field({
|
|
description: 'JSON string representing the properties for an embed',
|
|
nullable: true,
|
|
})
|
|
properties: string;
|
|
|
|
@Field({
|
|
description: 'Timestamp of when the Shortcode was created',
|
|
})
|
|
createdOn: Date;
|
|
|
|
@Field({
|
|
description: 'Details of user who created the shortcode',
|
|
nullable: true,
|
|
})
|
|
creator: ShortcodeCreator;
|
|
}
|