Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Paste code macro
languagejava
titleA simple IQL searching for an Advertiser by Id
advertiser.id = '2321'
Paste code macro
languagejava
titleA more advanced IQL using a conjunction
advertiser.id IN ('2321', '3221') OR advertiser.name = 'My Advertiser'
Paste code macro
languagejava
titleAdvanced IQL using braces to define blocks
advertiser.id IN ('2321', '3221') OR 
(advertiser.status = 'ACTIVE' AND advertiser.phase = 'TESTING')

...