INPUT_OBJECT

InstanceAuditLogInput

link GraphQL Schema definition

1input InstanceAuditLogInput {
4
2# The unique ID of an audit log entry. Multiple values can be provided.
3id: [ID!]
7
5# User name on audit entry. It can be partial match.
6userName: String
10
8# User id on audit entry.
9userId: String
14
11# The type of the event involved in the audit action, such as `auditLoginSuccess`.
12# It can be partial match.
13event: EventTypeEnum
19
15# Date/time up to which entries will be returned. In other words, the
16# end of the query time window.
17# Defaults to the current time.
18toDateTime: DateTime
24
20# Date/time from which entries will be returned. In other words, the
21# start of the query time window.
22# Defaults to the `toDateTime` minus 7 days.
23fromDateTime: DateTime
27
25# Offset into result set, for paging.
26offset: Int
32
28# Limit on result size, for paging (page size). Audit queries are
29# lightweight so the default of 100 is higher than the default offset
30# used elsewhere in the API.
31limit: Int
35
33# Order information. Default is order by `createdDateTime` descending.
34orderBy: [InstanceAuditLogOrderBy!]
36}

link Required by

This element is not required by anyone