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
* @var string $assignee_id Return issues assigned to the given user id. Mutually exclusive with assignee_username.
386
+
* None returns unassigned issues. Any returns issues with an assignee.
387
+
* @var string $assignee_username Return issues assigned to the given username. Similar to assignee_id and mutually exclusive with assignee_id.
388
+
* In GitLab CE, the assignee_username array should only contain a single value. Otherwise, an invalid parameter error is returned.
389
+
* @var int $author_id Return issues created by the given user id. Mutually exclusive with author_username.
390
+
* Combine with scope=all or scope=assigned_to_me.
391
+
* @var string $author_username Return issues created by the given username. Similar to author_id and mutually exclusive with author_id.
392
+
* @var bool $confidential Filter confidential or public issues
393
+
* @var \DateTimeInterface $created_after Return issues created after the given time (inclusive)
394
+
* @var \DateTimeInterface $created_before Return issues created before the given time (inclusive)
395
+
* @var int $iteration_id Return issues assigned to the given iteration ID. None returns issues that do not belong to an iteration. Any returns issues that belong to an iteration. Mutually exclusive with iteration_title.
396
+
* @var string $iteration_title Return issues assigned to the iteration with the given title. Similar to iteration_id and mutually exclusive with iteration_id.
397
+
* @var string $labels Comma-separated list of label names, issues must have all labels to be returned. None lists all issues with no labels. Any lists all issues with at least one label. No+Label (Deprecated) lists all issues with no labels. Predefined names are case-insensitive.
398
+
* @var string $milestone The milestone title. None lists all issues with no milestone. Any lists all issues that have an assigned milestone.
399
+
* @var string $my_reaction_emoji Return issues reacted by the authenticated user by the given emoji. None returns issues not given a reaction. Any returns issues given at least one reaction.
400
+
* @var bool $non_archived Return issues from non archived projects. Default is true.
401
+
* @var string $not Return issues that do not match the parameters supplied. Accepts: labels, milestone, author_id, author_username, assignee_id, assignee_username, my_reaction_emoji, search, in
* @var string $scope Return issues for the given scope: created_by_me, assigned_to_me or all. Defaults to all.
404
+
* @var string $search Search group issues against their title and description
405
+
* @var string $sort Return issues sorted in asc or desc order. Default is desc
406
+
* @var string $state Return all issues or just those that are opened or closed
407
+
* @var \DateTimeInterface $updated_after Return issues updated on or after the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z)
408
+
* @var \DateTimeInterface $updated_before Return issues updated on or before the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z)
409
+
* @var int $weight Return issues with the specified weight. None returns issues with no weight assigned. Any returns issues with a weight assigned.
410
+
* @var bool $with_labels_details If true, the response returns more details for each label in labels field: :name, :color, :description, :description_html, :text_color. Default is false.
0 commit comments