Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions graphql/operations/GetHackerOneReportByID.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ query GetHackerOneReportByID($databaseId: Int!) {
title
vulnerability_information
substate
reference
reference_link
severity {
id
rating
Expand All @@ -24,6 +26,36 @@ query GetHackerOneReportByID($databaseId: Int!) {
custom_fields {
total_count
}
activities(
first: 100
order_by: { field: created_at, direction: ASC }
) {
total_count
edges {
node {
... on ActivityInterface {
id
_id
internal
created_at
updated_at
message
actor {
... on User {
id
username
name
}
... on Team {
id
handle
name
}
}
}
}
}
}
}
}
}
Expand Down
Loading