Note
type Note implements Node {
id: ID!
createdAt: Time!
updatedAt: Time!
companyID: String!
title: String
contents: String!
attachments: [String!]!
ownerID: String!
pinned: Boolean
records: [NoteAssociation!]
attachmentsData: [CloudinaryAsset!]!
}
Fields
Note.id ● ID! non-null scalar
Note.createdAt ● Time! non-null scalar
Note.updatedAt ● Time! non-null scalar
Note.companyID ● String! non-null scalar
Note.title ● String scalar
Note.contents ● String! non-null scalar
Note.attachments ● [String!]! non-null scalar
Note.ownerID ● String! non-null scalar
Note.pinned ● Boolean scalar
Note.records ● [NoteAssociation!] list object
Note.attachmentsData ● [CloudinaryAsset!]! non-null object
Interfaces
Node interface
An object with an ID. Follows the Relay Global Object Identification Specification
Returned By
createNote mutation ● getNote query ● updateNote mutation
Member Of
NoteAssociation object ● NoteEdge object