Confirmed users
52
edits
m (→How to Use) |
|||
| Line 48: | Line 48: | ||
</bugzilla> | </bugzilla> | ||
</pre> | |||
This example uses date ranges to retrieve the bugs from multiple products with a specific resolution and where the status is the field changed during the date range selected: | |||
<pre> | |||
<bugzilla type="count" display="bar"> | |||
{ | |||
"product": ["Core","Calendar","Toolkit","Firefox", "Thunderbird"], | |||
"whiteboard": "[good first bug]", | |||
"changed_after": "2013-07-01", | |||
"changed_before": "2013-08-01", | |||
"changed_field": "status", | |||
"changed_field_to": ["RESOLVED"], | |||
"resolution": ["FIXED", "INVALID", "WONTFIX", "DUPLICATE", "WORKSFORME", "INCOMPLETE"], | |||
"x_axis_field": "product" | |||
} | |||
</bugzilla> | |||
</pre> | </pre> | ||