### Search for people that match a given path pattern (aka query). In order to get related accounts, the query should start with "*/" prefix, meaning will fetch all [account_id] that match the following pattern. Query example: "Get all accounts that created at least a widget" -> "*/widget/*" **Return result** As a dev component that will be used within a parent widget, a callback function should be provided through props.onUpdateSearchResult. **Props:** * onUpdateSearchResult: (required) see above * debug: (optional) default false - if true will display people profile that match path pattern * predefinedQueries: (optional) : [{name,query}] array with ready to use predefined queries. It will be renderized as button below query input example: `[{ "name": "Widget Builders", "query": "*/widget/*" }, { "name": "Feature Builders", "query": "*/widget/*/metadata/tags/app" } ]`