python-o365
python-o365 copied to clipboard
Bug: .negate()
There is a bug that when you use negate, in a query with chain(), to add an extra not
Eg:
the first contains two not and the second contains only one not
query = mailbox.new_query().on_attribute('subject').negate().contains('[cm#') merge_query = query.chain('and').on_attribute('isRead').equals(False)