@@ -145,11 +145,11 @@ Suppose you want to find the definition of the `addClass` function inside
145145[ jQuery] ( https://github.com/jquery/jquery ) . Your query would look something like
146146this:
147147
148- https://api.github.com/search/code?q=addClass+in:file+language:js+@ jquery/jquery
148+ https://api.github.com/search/code?q=addClass+in:file+language:js+repo: jquery/jquery
149149
150150Here, we're searching for the keyword ` addClass ` within a file's contents. We're
151151making sure that we're only looking in files where the language is JavaScript.
152- And we're scoping the search to the ` @ jquery/jquery` repository.
152+ And we're scoping the search to the ` repo: jquery/jquery` repository.
153153
154154<%= headers 200 %>
155155<%= json(: code_search_v3_results ) %>
@@ -163,7 +163,7 @@ media type in your Accept header. For example, via curl, the above query would
163163look like this:
164164
165165 curl -H 'Accept: application/vnd.github.v3.text-match+json' \
166- https://api.github.com/search/code?q=addClass+in:file+language:js+@ jquery/jquery
166+ https://api.github.com/search/code?q=addClass+in:file+language:js+repo: jquery/jquery
167167
168168This produces the same JSON payload as above, with an extra key called
169169` text_matches ` , an array of objects. These objects provide information such as
198198 Finds issues that are assigned to a certain user.
199199 * [ Mentions] ( https://help.github.com/articles/searching-issues#mentions )
200200 Finds issues that mention a certain user.
201+ * [ Commenter] ( https://help.github.com/articles/searching-issues#commenter )
202+ Finds issues that a certain user commented on.
203+ * [ Involves] ( https://help.github.com/articles/searching-issues#involves )
204+ Finds issues that were either created by a certain user, assigned to that
205+ user, mention that user, or were commented on by that user.
201206 * [ State] ( https://help.github.com/articles/searching-issues#state )
202207 Filter issues based on whether they're open or closed.
203208 * [ Labels] ( https://help.github.com/articles/searching-issues#labels )
0 commit comments