OBJECT

JobActionAudit

link GraphQL Schema definition

1type JobActionAudit {
2
3jobId: ID!
4
5organizationId: ID!
6
7# Type of action performed on the job
8action: JobAction!
9
10# UserId used to perform the action
11actor: ID!
12
13# Timestamp of the action
14timestamp: DateTime!
15
16}