We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38cfc0b + 3285fcc commit 371a14eCopy full SHA for 371a14e
graphql/operations/GetHackerOneReportByID.graphql
@@ -7,6 +7,8 @@ query GetHackerOneReportByID($databaseId: Int!) {
7
title
8
vulnerability_information
9
substate
10
+ reference
11
+ reference_link
12
severity {
13
id
14
rating
@@ -24,6 +26,36 @@ query GetHackerOneReportByID($databaseId: Int!) {
24
26
custom_fields {
25
27
total_count
28
}
29
+ activities(
30
+ first: 100
31
+ order_by: { field: created_at, direction: ASC }
32
+ ) {
33
+ total_count
34
+ edges {
35
+ node {
36
+ ... on ActivityInterface {
37
+ id
38
+ _id
39
+ internal
40
+ created_at
41
+ updated_at
42
+ message
43
+ actor {
44
+ ... on User {
45
46
+ username
47
+ name
48
+ }
49
+ ... on Team {
50
51
+ handle
52
53
54
55
56
57
58
59
60
61
0 commit comments