Community
Questions Library
Docs
Blog
Events
Swag
Github
Slack
JupiterOne
Discussions
Release Notes
Contact Us
Query related FAQs - AskJ1 Community
<main> <article class="userContent"> <h2 data-id="how-do-i-search-filter-on-all-entities-from-an-integration-without-enumerating-all-types">How do I search/filter on all entities from an integration without enumerating all types?</h2> <p>For example, you may want to identify if a certain tag is present across all<br> entities from AWS. You can do this by using the special metadata<br><code class="code codeInline" spellcheck="false" tabindex="0">_integrationType</code>, like this:</p> <pre class="code codeBlock" spellcheck="false" tabindex="0">Find * with _integrationType="aws" and tag.ABC=undefined </pre> <p>You may also want to limit this query to filter out irrelevant entities by class.<br> For example:</p> <pre class="code codeBlock" spellcheck="false" tabindex="0">Find * with _integrationName="aws" and tag.ABC=undefined and _class!='Finding' </pre> <p>If you have multiple integrations and would like to limited your search to one<br> particular account, use <code class="code codeInline" spellcheck="false" tabindex="0">tag.AccountName</code> in your query filter.</p> </article> </main>