Has Operator

The has operator allows you to search for entities that include a value for a field.

For example: This query returns all organizations located in San Francisco with 5000 or more employees that have a SIC Classification on file.

type:Organization location.{city.name:"San Francisco" isCurrent:true} nbEmployees>=5000 has:sicClassification

You can also combine this with a facet search to view other industry tags:

type:Organization location.{city.name:"San Francisco" isCurrent:true} nbEmployees>=5000 has:sicClassification facet:categories.name

See Facet Queries