fnolla
11/22/2017, 3:26 PMtype Test @model {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
testId: Int! @isUnique
title: String!
result: String
stepCount: Int!
featureId: Int!
automationResults: [AutomationResult!]! @relation(name: "AutomationResult")
}
type AutomationResult @model {
id: ID! @isUnique
testId: Int! @isUnique
qa: Int
stg: Int
prod: Int
test: Test @relation(name: "AutomationResult")
}