Firefox OS/QA/WikiBugzilla: Difference between revisions

From MozillaWiki
< Firefox OS‎ | QA
Jump to navigation Jump to search
(Created page with "==Simple Query== <bugzilla> { "cf_qa_whiteboard": "[2.2-feature-qa+]", "flagtypes.name": "in-moztrap-", "include_fields": "id, qa_contact, status...")
 
Line 1: Line 1:
==Simple Query==
== Simple Query ==
   <bugzilla>
* Get bugs with "[2.2-feature-qa+]" in its QA whiteboard. 
   < bugzilla>
     {
     {
        "cf_qa_whiteboard": "[2.2-feature-qa+]",
      "cf_qa_whiteboard": "[2.2-feature-qa+]",
        "flagtypes.name": "in-moztrap-",
      "include_fields": "id, qa_contact, status, resolution, component, assigned_to, summary"
        "include_fields": "id, qa_contact, status, resolution, component, assigned_to, summary"
     }
     }
   </bugzilla>
   < /bugzilla>
 
 
== Reference ==
* [https://github.com/mozilla/mediawiki-bugzilla/issues/58 Issue]: unable to get array item, only return the 'array' string
* [https://bugzilla.mozilla.org/show_bug.cgi?id=992732 Bug 992732] contains lots of fields you can use.
* [https://github.com/bugzilla/bugzilla Bugzilla on github]

Revision as of 02:39, 24 December 2014

Simple Query

  • Get bugs with "[2.2-feature-qa+]" in its QA whiteboard.
 < bugzilla>
   {
     "cf_qa_whiteboard": "[2.2-feature-qa+]",
     "include_fields": "id, qa_contact, status, resolution, component, assigned_to, summary"
   }
 < /bugzilla>


Reference