Note
The NoteType is a GraphQL object type that represents a note in the system.
type Note {
author: Party
authorId: ID
content: String!
createdAt: ISO8601DateTime!
deletedAt: ISO8601DateTime
id: ID!
notable: Notable!
notableId: ID!
notableType: NotableObjectEnum!
noteType: NoteTypeEnum
updatedAt: ISO8601DateTime!
}
Fields
Note.author ● Party object
The party associated with the note.
Note.authorId ● ID scalar
The ID of the party associated with the note.
Note.content ● String! non-null scalar
The content of the note.
Note.createdAt ● ISO8601DateTime! non-null scalar
The date and time when the note was created.
Note.deletedAt ● ISO8601DateTime scalar
The date and time when the note was deleted.
Note.id ● ID! non-null scalar
The unique identifier of the note.
Note.notable ● Notable! non-null union
The object that the note is attached to.
Note.notableId ● ID! non-null scalar
The ID of the object that the note is attached to.
Note.notableType ● NotableObjectEnum! non-null enum
The type of the object that the note is attached to.
Note.noteType ● NoteTypeEnum enum
The type of the note.
Note.updatedAt ● ISO8601DateTime! non-null scalar
The date and time when the note was last updated.
Returned By
addNote mutation ● removeNote mutation
Member Of
ASN object ● NoteConnection object ● NoteEdge object ● Order object ● SupplyShipment object