diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-03-31 22:32:35 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-04-04 00:37:57 +0200 |
commit | 2a5fbc4dc988d2eea76fe5e844ccf6425f9386ee (patch) | |
tree | 8e5125a64ff3d54fa304ae758ddbbcc427b368af /doc/queries.md | |
parent | 5b0a92dea43f467f31a65a6f02e937d285cb0a71 (diff) | |
download | git-bug-2a5fbc4dc988d2eea76fe5e844ccf6425f9386ee.tar.gz |
Expose actors and participants in snapshot and bug excerpt
Append operations authors to each list on Apply() call
Expose actors and participants in graphql
Add actor/participant query filter and documentation
Diffstat (limited to 'doc/queries.md')
-rw-r--r-- | doc/queries.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/queries.md b/doc/queries.md index 224b59a0..857600e8 100644 --- a/doc/queries.md +++ b/doc/queries.md @@ -33,6 +33,27 @@ You can filter based on the person who opened the bug. | `author:QUERY` | `author:descartes` matches bugs opened by `René Descartes` or `Robert Descartes` | | | `author:"rené descartes"` matches bugs opened by `René Descartes` | +### Filtering by participant + +You can filter based on the person who participated in the bug (Opened the bug or added a comment). + +| Qualifier | Example | +| --- | --- | +| `participant:QUERY` | `participant:descartes` matches bugs opened or commented by `René Descartes` or `Robert Descartes` | +| | `participant:"rené descartes"` matches bugs opened or commented by `René Descartes` | + +### Filtering by actor + +You can filter based on the person who interacted with the bug. + +| Qualifier | Example | +| --- | --- | +| `actor:QUERY` | `actor:descartes` matches bugs edited by `René Descartes` or `Robert Descartes` | +| | `actor:"rené descartes"` matches bugs edited by `René Descartes` | +| ` + +**NOTE**: interaction with bugs include: opening the bug, adding comments, adding/removing labels etc... + ### Filtering by label You can filter based on the bug's label. |