The optional WITH clause allows
you to filter all search results based on division. Although you can
also filter on an object's Division field within a WHERE clause,
using WITH is preferable because:
It pre-filters all records based on division before applying other
filters
You can specify the division's name in the filter, rather than
its ID (as is required if you filter on division in the WHERE clause)
For example:
FIND {test} RETURNING Account (id where name like '%test%'),
Contact (id where name like '%test%')
WITH DIVISION = 'Global'