Versions Compared

Key

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

...

Code Block
breakoutModewide
//SearhcSearch for all tickets delivered to 6000 Grand Ave street address.
issue.property['com.mumosystems.checkout-order'].address.address ~ "6000 Grand Ave"

//Search for all tickets with an order placed to Iowa.
issue.property['com.mumosystems.checkout-order'].address.state ~ "Iowa"

//To search for a full address, perform a search like the following:  
issue.property['com.mumosystems.checkout-order'].address.address ~  "6000  Grand Ave" AND    
issue.property['com.mumosystems.checkout-order'].address.state ~ "Iowa" AND 
issue.property['com.mumosystems.checkout-order'].address.country  ~ "United States Of America" AND 
issue.property['com.mumosystems.checkout-order'].address.postalCode ~ "50265"

...