Skip to content

Commit

Permalink
fix: graphql formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sshivaditya committed Jan 10, 2025
1 parent 609db1f commit 91fb9e7
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions functions/issue-scraper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,14 +142,9 @@ function markdownToPlainText(markdown: string | null): string | null {
return md.plainText;
}

const SEARCH_ISSUES_QUERY = /* GraphQL */`
const SEARCH_ISSUES_QUERY = /* GraphQL */ `
query SearchIssues($searchText: String!, $after: String) {
search(
query: $searchText,
type: ISSUE,
first: 100,
after: $after
) {
search(query: $searchText, type: ISSUE, first: 100, after: $after) {
pageInfo {
hasNextPage
endCursor
Expand Down

0 comments on commit 91fb9e7

Please sign in to comment.