You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`state`| string | no | Return all merge requests or just those that are `opened`, `closed`, or `merged`|
34
+
|`order_by`| string | no | Return requests ordered by `created_at` or `updated_at` fields. Default is `created_at`|
35
+
|`sort`| string | no | Return requests sorted in `asc` or `desc` order. Default is `desc`|
36
+
|`milestone`| string | no | Return merge requests for a specific milestone |
37
+
|`view`| string | no | If `simple`, returns the `iid`, URL, title, description, and basic state of merge request |
38
+
|`labels`| string | no | Return merge requests matching a comma separated list of labels |
39
+
|`created_after`| datetime | no | Return merge requests created after the given time (inclusive) |
40
+
|`created_before`| datetime | no | Return merge requests created before the given time (inclusive) |
41
+
|`scope`| string | no | Return merge requests for the given scope: `created-by-me`, `assigned-to-me` or `all`. Defaults to `created-by-me`|
42
+
|`author_id`| integer | no | Returns merge requests created by the given user `id`. Combine with `scope=all` or `scope=assigned-to-me`|
43
+
|`assignee_id`| integer | no | Returns merge requests assigned to the given user `id`|
44
+
|`my_reaction_emoji`| string | no | Return merge requests reacted by the authenticated user by the given emoji ` _([Introduced][ce-14016] in GitLab 10.0)_|
43
45
44
46
```json
45
47
[
@@ -116,6 +118,7 @@ GET /projects/:id/merge_requests?state=all
116
118
GET /projects/:id/merge_requests?iids[]=42&iids[]=43
117
119
GET /projects/:id/merge_requests?milestone=release
118
120
GET /projects/:id/merge_requests?labels=bug,reproduced
121
+
GET /projects/:id/merge_requests?my_reaction_emoji=star
119
122
```
120
123
121
124
Parameters:
@@ -135,6 +138,7 @@ Parameters:
135
138
|`scope`| string | no | Return merge requests for the given scope: `created-by-me`, `assigned-to-me` or `all`_([Introduced][ce-13060] in GitLab 9.5)_|
136
139
|`author_id`| integer | no | Returns merge requests created by the given user `id`_([Introduced][ce-13060] in GitLab 9.5)_|
137
140
|`assignee_id`| integer | no | Returns merge requests assigned to the given user `id`_([Introduced][ce-13060] in GitLab 9.5)_|
141
+
|`my_reaction_emoji`| string | no | Return merge requests reacted by the authenticated user by the given emoji ` _([Introduced][ce-14016] in GitLab 10.0)_|
0 commit comments