OBJECT

AuditLogEntryList

link GraphQL Schema definition

1type AuditLogEntryList implements Page {
2
3records: [AuditLogEntry!]!
4
5# Count of records in this page. Will be less than or equal to `limit`.
6count: Int
7
8# Offset used in the query that generated this page.
9offset: Int!
10
11# Limit used in the query that generated this page.
12limit: Int!
13
14# `toDateTime` value of the query that generated this page.
15# Useful when a default was applied.
16toDateTime: DateTime
17
18# `fromDateTime` value of the query that generated this page.
19# Useful when a default was applied.
20fromDateTime: DateTime
21
22}