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