You need to sign in to do that
Don't have an account?

query attachments on an account
Is it possible to query attachments on an account. I tried:
Select Title, Id from NoteAndAttachment WHERE ParentId = 'accountID'
Error: Query failed: Invalid Type for Operation: entity type does not support query
select ... from Attachment where parentId='...'
If you really want notesAndAttachments, rather than just attachments, then you can only query those in a child query, e.g.
select id,name, (select id.. from NotesAndAttachments) from account where id='...'