in nodes/YouTrack/resources/command/utils.ts [24:34]
export function validateCommandQuery(
query: string | undefined,
context: IExecuteSingleFunctions
): void {
if (!query) {
throw new NodeOperationError(
context.getNode(),
'Command query is required'
);
}
}