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.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Account the note is attached to. Exactly one of account / contact / lead_oppty /
  • # project / quote / custom_entity must be set.
  • account: AccountEntity
  • # Contact the note is attached to.
  • contact: ContactEntity
  • # Custom entity record the note is attached to.
  • customEntity: CustomEntityEntity
  • # Lead the note is attached to. Set when lead_oppty_id resolves to a Lead.
  • lead: LeadEntity
  • # Opportunity the note is attached to. Set when lead_oppty_id resolves to an
  • # Opportunity.
  • oppty: OpportunityEntity
  • # User who authored the note.
  • owner: ClientEntity
  • # Project the note is attached to.
  • project: ProjectEntity
  • # Quote the note is attached to.
  • quote: QuoteEntity
  • # Id of the account.
  • accountId: ID
  • # Id of the contact.
  • contactId: ID
  • # Id of the custom entity record.
  • customEntityId: ID
  • # Id of the lead or opportunity the note is attached to.
  • leadOpptyId: ID
  • # Free-form text body of the note (sanitized HTML allowed).
  • note: String!
  • # Id of the note author.
  • ownerId: ID!
  • # Id of the project.
  • projectId: ID
  • # Id of the quote.
  • quoteId: ID
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }