Note:5: Difference between revisions

From notes
No edit summary
No edit summary
Line 19: Line 19:
This finds all of the subtasks of T174043 and lists their information including the internal ids of the tags, which could then also be queried.
This finds all of the subtasks of T174043 and lists their information including the internal ids of the tags, which could then also be queried.


The code to reproduce this query is generated as follows:
The names of the task can then be found by visiting https://phabricator.wikimedia.org/conduit/method/project.search/.


<pre>
In the query form, fill in:
$ echo '{
 
  "constraints": {
{| class="wikitable"
    "parentIDs": [
! constraints
      174043
| {{"phids": ["PHID-PROJ-7ocjej2gottz7cikkdc6"]}
    ]
|}
  },
 
  "attachments": {
where the phids are taken from the results of the previous query.
    "projects": true
  }
}' | arc call-conduit --conduit-uri https://phabricator.wikimedia.org/ --conduit-token <conduit-token> maniphest.search
</pre>

Revision as of 20:55, 6 September 2017

Author
Created 7 September 2017 01:42:07
Last Modified 7 September 2017 14:25:07
Tags Phabricator

Motivation: I would like to be able to visualize the relationships between a set of tasks in Phabricator. That is, for a set of tasks, I want a directed graph showing the parent task/subtask relationships. Bonus if it also shows the tags and/or status on each task. It should be straightforward to display that in a force-directed graph using D3 with information queried using the Conduit Phabricator API.

Visit https://phabricator.wikimedia.org/conduit/method/maniphest.search/.

In the query form, fill in:

constraints {"parentIDs": [174043]}
attachments {"projects": true}

This finds all of the subtasks of T174043 and lists their information including the internal ids of the tags, which could then also be queried.

The names of the task can then be found by visiting https://phabricator.wikimedia.org/conduit/method/project.search/.

In the query form, fill in:

constraints {{"phids": ["PHID-PROJ-7ocjej2gottz7cikkdc6"]}

where the phids are taken from the results of the previous query.