* Build remote server * Add getters * Migrate to json inputs * Use extendable type * Use regex validation * Remove acronymes --------- Co-authored-by: Thomas Trompette <thomast@twenty.com>
10 lines
236 B
TypeScript
10 lines
236 B
TypeScript
import { InputType, ID } from '@nestjs/graphql';
|
|
|
|
import { IDField } from '@ptc-org/nestjs-query-graphql';
|
|
|
|
@InputType()
|
|
export class RemoteServerIdInput {
|
|
@IDField(() => ID, { description: 'The id of the record.' })
|
|
id!: string;
|
|
}
|