Journal
Represents a journal.
type Journal {
createdAt: DateTime!
createdBy: String
entries(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [JournalEntry!]!
eventId: ID!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
number: PositiveInt!
}
Fields
Journal.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
Journal.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
Journal.entries
● [JournalEntry!]!
non-null object
The entries for this journal.
Optionally, the offset
and limit
arguments can be used to page through multiple items:
offset
must be a non-negative integer (defaults to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
Journal.entries.limit
● PaginationLimit!
non-null scalar
Journal.entries.offset
● NonNegativeInt!
non-null scalar
Journal.eventId
● ID!
non-null scalar
The ID of the event this journal is associated with.
Journal.id
● ID!
non-null scalar
The unique identifier of the journal.
Journal.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
Journal.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
Journal.number
● PositiveInt!
non-null scalar
The number of this journal.
Returned By
journals
query