OBJECT

XrayHistoryEntry

Xray History Entry type

link GraphQL Schema definition

1type XrayHistoryEntry {
2
3# Test Version that the changes refer to (if applicable).
4version: String
5
6# User that performed the change(s).
7user: String
8
9# Date of change(s).
10date: String
11
12# Action performed.
13action: String
14
15# Details of the change(s).
16changes: [Changes]
17
18}