Customizing baseline queries in Dovetail Agent
November 10, 2016
In my last post, I covered the Query Filter Config files, and how they’re used to define a query.Now, lets have a look at how we can override the baseline queries, customizing them for your specific implementation. Customizing a filter config doesn't mean you have to write rewrite the existing ones. You can write a config file just describing the customizations you need.We call these Filter Overrides.Using filter overrides, we can:remove a Columnremove a Facetremove a Fieldadd a Facetadd a Fieldadd a Columnadd a Join Example Filter OverrideThis is an example of a custom filter override file.We’ll override the Cases query, which is part of My Work, and adhoc queries on Work Items.<filter overrides="Cases"> <!-- Remove priority as a facet and as a output column --> <removeFacet key="priority" /> <removeColumn key="priority" /> <!-- Remove the created column. We'll…