SystemLog
The SystemLogType object represents a system log entry. It includes fields for the log type (info, error, warning, success), the operation performed, the message associated with the log entry, the ID and type of the entity associated with the log entry, and timestamps for when the log entry was created and updated.
type SystemLog {
createdAt: ISO8601DateTime!
entityId: ID!
entityType: LogEntityTypeEnum!
eventDetails: [[LogsEventDetails!]!]
id: ID!
logType: LogTypeEnum!
message: String!
operation: String!
performer: LogsPerformer
updatedAt: ISO8601DateTime!
}
Fields
SystemLog.createdAt ● ISO8601DateTime! non-null scalar common
The date and time when the log entry was created.
SystemLog.entityId ● ID! non-null scalar common
The ID of the entity associated with the log entry.
SystemLog.entityType ● LogEntityTypeEnum! non-null enum common
The type of the entity associated with the log entry.
SystemLog.eventDetails ● [[LogsEventDetails!]!] list object common
The details for the operation associated with the log entry.
SystemLog.id ● ID! non-null scalar common
The unique identifier for the log entry.
SystemLog.logType ● LogTypeEnum! non-null enum common
The type of the log entry. Can be INFO, ERROR, WARNING, or SUCCESS.
SystemLog.message ● String! non-null scalar common
The message associated with the log entry.
SystemLog.operation ● String! non-null scalar common
The operation that was performed when the log entry was created.
SystemLog.performer ● LogsPerformer object common
The party that performed the operation associated with the log entry.
SystemLog.updatedAt ● ISO8601DateTime! non-null scalar common
The date and time when the log entry was last updated.
Returned By
systemLogs query