Home > Back-end >  How to search github issues which does not have a particular label
How to search github issues which does not have a particular label

Time:12-16

I want to retrieve list of GitHub issue, which does not have "label_A".

enter image description here

What is should be the query part I need to be added to the searching bar.

CodePudding user response:

Try adding this -label:"" into user searching query.

-label:"label_A"
  • Related