PerBonomi
10 years agoBoss
API 2 to find messages that are NOT in board X
I've been having some basic success using the new API, but one thing still has me stumped.
I want to find a user's messages , except the ones in one specific board.
Things I've tried:
SELECT * FROM messages WHERE author.login = 'username' AND board.id != 'ideas_submissions' limit 10
SELECT * FROM messages WHERE author.login = 'username' AND board.id !( 'ideas_submissions') limit 10
SELECT * FROM messages WHERE author.login = 'username' AND board.id <> 'ideas_submissions' limit 10
SELECT * FROM messages WHERE author.login = 'username' AND board.id !(IN 'ideas_submissions') limit 10
And many other options. No luck. Has anyone been able to do this?