You should use regexp for this, i.e.
{ "Category" : /^BOND.*/ }
for categories begins with BOND, or
{ "Category" : /.*BOND.*/ }
for categories contains BOND within
You should use regexp for this, i.e.
{ "Category" : /^BOND.*/ }
for categories begins with BOND, or
{ "Category" : /.*BOND.*/ }
for categories contains BOND within