OBJECT
NoteEntity
link GraphQL Schema definition
- type NoteEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Account the note is attached to. Exactly one of account / contact / lead_oppty /
- # project / quote / custom_entity must be set.
- : AccountEntity
- # Contact the note is attached to.
- : ContactEntity
- # Custom entity record the note is attached to.
- : CustomEntityEntity
- # Lead the note is attached to. Set when lead_oppty_id resolves to a Lead.
- : LeadEntity
- # Opportunity the note is attached to. Set when lead_oppty_id resolves to an
- # Opportunity.
- : OpportunityEntity
- # User who authored the note.
- : ClientEntity
- # Project the note is attached to.
- : ProjectEntity
- # Quote the note is attached to.
- : QuoteEntity
- # Id of the account.
- : ID
- # Id of the contact.
- : ID
- # Id of the custom entity record.
- : ID
- # Id of the lead or opportunity the note is attached to.
- : ID
- # Free-form text body of the note (sanitized HTML allowed).
- : String!
- # Id of the note author.
- : ID!
- # Id of the project.
- : ID
- # Id of the quote.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }