Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
[KNO-409] - Remove ORDER BY
Browse files Browse the repository at this point in the history
  • Loading branch information
jmountifield authored Jun 24, 2024
1 parent 8d59cb4 commit cc91d93
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions jupiterone/questions/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,8 @@ questions:
alias
queries:
- query: |
find
hackerone_report with totalAmountAwarded!=0 as report
return
report.hackerAlias, sum(report.totalAmountAwarded) as totalAward
order by totalAward desc
FIND hackerone_report WITH totalAmountAwarded != 0 AS report
RETURN report.hackerAlias, sum(report.totalAmountAwarded) as totalAward
tags:
- hackerone
- bug bounty
Expand All @@ -28,8 +25,7 @@ questions:
queries:
- query: |
FIND hackerone_report WITH (open = true AND state ~= "triaged" AND complexity ~= "high" AND confidentiality ~= "high") AS report
RETURN
report.displayName, report.hackerAlias, report.triagedOn,report.hackerProfilePic, report.details
RETURN report.displayName, report.hackerAlias, report.triagedOn,report.hackerProfilePic, report.details
tags:
- hackerone
- reporting

0 comments on commit cc91d93

Please sign in to comment.