Filter criteria for intent matching. Can be combined to create more specific intents.
Example
// matches only geopoints in the travel-project project, production dataset constfilter: IntentFilter = { projectId:'travel-project', dataset:'production', types: ['geopoint'] }
// matches all documents in the travel-project project constfilter: IntentFilter = { projectId:'travel-project', types: ['*'] }
// matches geopoints in the travel-project production dataset and map pins in all projects in the org constfilters: IntentFilter[] = [ { projectId:'travel-project', dataset:'production', types: ['geopoint'] }, { types: ['map-pin'] } ]
Filter criteria for intent matching. Can be combined to create more specific intents.
Example