Skip to main content

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!
id: ID!
logType: LogTypeEnum!
message: String!
operation: String!
performer: LogsPerformer
updatedAt: ISO8601DateTime!
}

Fields

SystemLog.createdAt ● ISO8601DateTime! non-null scalar

The date and time when the log entry was created.

SystemLog.entityId ● ID! non-null scalar

The ID of the entity associated with the log entry.

SystemLog.entityType ● LogEntityTypeEnum! non-null enum

The type of the entity associated with the log entry.

SystemLog.id ● ID! non-null scalar

The unique identifier for the log entry.

SystemLog.logType ● LogTypeEnum! non-null enum

The type of the log entry. Can be INFO, ERROR, WARNING, or SUCCESS.

SystemLog.message ● String! non-null scalar

The message associated with the log entry.

SystemLog.operation ● String! non-null scalar

The operation that was performed when the log entry was created.

SystemLog.performer ● LogsPerformer object

The party that performed the operation associated with the log entry.

SystemLog.updatedAt ● ISO8601DateTime! non-null scalar

The date and time when the log entry was last updated.

Returned By

systemLogs query