Signed-off-by: Antoine Bouchardy <antoine@getprobo.com> Signed-off-by: Bryan Frimin <bryan@getprobo.com>
15 lines
285 B
GraphQL
15 lines
285 B
GraphQL
type Risk {
|
|
id: ID!
|
|
organizationId: ID!
|
|
name: String!
|
|
description: String!
|
|
category: String!
|
|
treatment: RiskTreatment!
|
|
ownerId: ID
|
|
inherentLikelihood: Int!
|
|
inherentImpact: Int!
|
|
residualLikelihood: Int!
|
|
residualImpact: Int!
|
|
createdAt: Time!
|
|
updatedAt: Time!
|
|
} |