Versions Compared

Key

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

...

  • Search for Items containing a specific Entity of type company:

    No Format
    entity:{type:company AND name:"Thomson Reuters"}


  • Search for Items containing at least one company-typed Entity "Thomson Reuters" and another one Entity "Squirro":

    No Format
    entity:{type:company AND name:"Thomson Reuters"} AND entity:{type:company AND name:Squirro}
    


  • Search for Items containing a specific Entity of type company with a confidence higher than 80%:

    No Format
    entity:{type:company AND name:"Thomson Reuters" AND confidence > 0.8}


  • Search for Items containing any Entity of type company with confidence higher than 70%:

    No Format
    entity:{type:company AND NOT confidence < 0.7}


  • Search for Items containing no Entity of type company with confidence higher or equal than 20%:

    No Format
    entity:{type:company AND confidence < 0.2}
    


  • Search for Items containing any Entity of type deal with at least a 70% confidence:

    No Format
    entity:{type:deal AND confidence > 0.7}


  • Search for Items containing a specific Entity of type deal:

    No Format
    entity:{type:deal AND properties.size:100 AND properties.region:US AND properties.industry:Tech AND properties.target:Whatsapp AND properties.acquirer:Facebook}
    


  • Search for Items containing one Entity with target Squirro and another Entity with target Whatsapp:

    No Format
    entity:{type:deal AND properties.target:Squirro AND properties.industry:Tech} AND entity:{type:deal AND properties.target:Whatsapp AND properties.industry:Tech}


  • Search for Items containing an Entity of type deal with a property size bigger than 100:

    No Format
    entity:{type:deal AND properties.size > 100}


Starred and Read Items

Info

Note: You need to enable flags for your project(s) before you are able to query for starred and read items.

In topic.ini:

No Format
[topic]
...
# For caching reasons the read/starred flags aggregations are now disabled
# by default. You can enable it by configuring a project id here.
# Mulitple ids can be provided by comman separating them.
enable_flags_for_project_ids = 



Query syntax for starred items:

No Format
is:starred

Query syntax for unstarred items:

No Format
is:unstarred

Query syntax for read items:

No Format
is:read

Query syntax for unread items:

No Format
is:unread