- add workflow runner module
- add an endpoint to trigger a workflow via api
- improve error handling for serverless functions
## Testing
- create 2 serverless functions
- create a workflow
- create this workflow Version
```
{
"type": "MANUAL",
"input": {"b": "bb"},
"nextAction": {
"name": "step_1",
"displayName": "Code",
"type": "CODE",
"valid": true,
"settings": {
"serverlessFunctionId": "Serverless function 1 Id",
"errorHandlingOptions": {
"retryOnFailure": {
"value": false
},
"continueOnFailure": {
"value": false
}
}
},
"nextAction": {
"name": "step_1",
"displayName": "Code",
"type": "CODE",
"valid": true,
"settings": {
"serverlessFunctionId": "Serverless function 1 Id",
"errorHandlingOptions": {
"retryOnFailure": {
"value": false
},
"continueOnFailure": {
"value": false
}
}
},
"nextAction": {
"name": "step_1",
"displayName": "Code",
"type": "CODE",
"valid": true,
"settings": {
"serverlessFunctionId": "Serverless function 2 Id",
"errorHandlingOptions": {
"retryOnFailure": {
"value": false
},
"continueOnFailure": {
"value": false
}
}
}
}
}
}
}
`
``
- call
```
mutation Trigger {
triggerWorkflow(workflowVersionId: "WORKFLOW_VERSION_ID") {
result
}
}
```
- try when errors are injected in serverless function
85 lines
1.6 KiB
TypeScript
85 lines
1.6 KiB
TypeScript
import {
|
|
Field,
|
|
HideField,
|
|
ObjectType,
|
|
registerEnumType,
|
|
} from '@nestjs/graphql';
|
|
|
|
import {
|
|
Authorize,
|
|
IDField,
|
|
QueryOptions,
|
|
} from '@ptc-org/nestjs-query-graphql';
|
|
import {
|
|
IsDateString,
|
|
IsEnum,
|
|
IsNotEmpty,
|
|
IsString,
|
|
IsUUID,
|
|
} from 'class-validator';
|
|
|
|
import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars';
|
|
import { ServerlessFunctionSyncStatus } from 'src/engine/metadata-modules/serverless-function/serverless-function.entity';
|
|
|
|
registerEnumType(ServerlessFunctionSyncStatus, {
|
|
name: 'ServerlessFunctionSyncStatus',
|
|
description: 'SyncStatus of the serverlessFunction',
|
|
});
|
|
|
|
@ObjectType('ServerlessFunction')
|
|
@Authorize({
|
|
authorize: (context: any) => ({
|
|
workspaceId: { eq: context?.req?.user?.workspace?.id },
|
|
}),
|
|
})
|
|
@QueryOptions({
|
|
defaultResultSize: 10,
|
|
maxResultsSize: 1000,
|
|
})
|
|
export class ServerlessFunctionDTO {
|
|
@IsUUID()
|
|
@IsNotEmpty()
|
|
@IDField(() => UUIDScalarType)
|
|
id: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@Field()
|
|
name: string;
|
|
|
|
@IsString()
|
|
@Field({ nullable: true })
|
|
description: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@Field()
|
|
sourceCodeHash: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@Field()
|
|
sourceCodeFullPath: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@Field()
|
|
runtime: string;
|
|
|
|
@IsEnum(ServerlessFunctionSyncStatus)
|
|
@IsNotEmpty()
|
|
@Field(() => ServerlessFunctionSyncStatus)
|
|
syncStatus: ServerlessFunctionSyncStatus;
|
|
|
|
@HideField()
|
|
workspaceId: string;
|
|
|
|
@IsDateString()
|
|
@Field()
|
|
createdAt: Date;
|
|
|
|
@IsDateString()
|
|
@Field()
|
|
updatedAt: Date;
|
|
}
|