Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Back to post

Revisions 2

one year ago
Kaosar Ahmed
310 × 3 Administrator
How to check if app is opened inside symphony or directly in browser?
How to check if app is opened inside symphony or directly in browser?
Hi Ankit, Thank you for clarifying, When you launch the extension application - it first initialises the '**SYMPHONY.services**'. You can run '**SYMPHONY.services.subscribe()**' to subscribe your local application. The '**SYMPHONY.services.subscribe()**' is an important process for the extension application registration. It finds a service - either local or remote - that has been registered and returns it. It will returns false if the service does not exist. Failure to subscribe to a Symphony service is the indicator that your in a web browser - as you will see the response as '**false**' confirming that it is launched from with the web browser. You will be able to find out more information on the following documentation: https://docs.developers.symphony.com/building-extension-applications-on-symphony/overview-of-extension-api/extension-api-services/register-and-subscribe Please let us know should you have any further question or feedback.
Hi Ankit, Thank you for clarifying, When you launch the extension application - it first initialises the '**SYMPHONY.services**'. You can run '**SYMPHONY.services.subscribe()**' to subscribe your local application. The '**SYMPHONY.services.subscribe()**' is an important process for the extension application registration. It finds a service - either local or remote - that has been registered and returns it. It will returns false if the service does not exist. Failure to subscribe to a Symphony service is the indicator that your in a web browser - as you will see the response as 'false'. You will be able to find out more information on the following documentation: https://docs.developers.symphony.com/building-extension-applications-on-symphony/overview-of-extension-api/extension-api-services/register-and-subscribe Please let us know should you have any further question or feedback.
one year ago
Original
Kaosar Ahmed
310 × 3 Administrator
How to check if app is opened inside symphony or directly in browser?

Hi Ankit, Thank you for clarifying, When you launch the extension application - it first initialises the '**SYMPHONY.services**'. You can run '**SYMPHONY.services.subscribe()**' to subscribe your local application. The '**SYMPHONY.services.subscribe()**' is an important process for the extension application registration. It finds a service - either local or remote - that has been registered and returns it. It will returns false if the service does not exist. Failure to subscribe to a Symphony service is the indicator that your in a web browser - as you will see the response as 'false'. You will be able to find out more information on the following documentation: https://docs.developers.symphony.com/building-extension-applications-on-symphony/overview-of-extension-api/extension-api-services/register-and-subscribe Please let us know should you have any further question or feedback.