3deda2f29a
Closes #5069 back-end part And: - do not display schemaPendingUpdates status on remote server lists as this call will become too costly if there are dozens of servers - (refacto) create foreignTableService After this is merged we will be able to delete remoteTable's availableTables column
19 lines
504 B
TypeScript
19 lines
504 B
TypeScript
import { InputType, ID, Field } from '@nestjs/graphql';
|
|
|
|
import { IDField } from '@ptc-org/nestjs-query-graphql';
|
|
import { IsOptional } from 'class-validator';
|
|
|
|
@InputType()
|
|
export class FindManyRemoteTablesInput {
|
|
@IDField(() => ID, { description: 'The id of the remote server.' })
|
|
id!: string;
|
|
|
|
@IsOptional()
|
|
@Field(() => Boolean, {
|
|
description:
|
|
'Indicates if pending schema updates status should be computed.',
|
|
nullable: true,
|
|
})
|
|
shouldFetchPendingSchemaUpdates?: boolean;
|
|
}
|