Skip to content

Commit

Permalink
[graph] Increase limit on correlated objects retrieval
Browse files Browse the repository at this point in the history
This limit was still at 20, resulting in empty graphs when correlations
were expected.
  • Loading branch information
ckane committed Dec 24, 2024
1 parent 642c1c7 commit f89fbb0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,7 @@ const GroupingKnowledgeCorrelation = createFragmentContainer(
x_opencti_order
x_opencti_color
}
objects {
objects(first: 500000) {
edges {
node {
... on BasicObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ const IncidentKnowledgeCorrelation = createFragmentContainer(
x_opencti_order
x_opencti_color
}
objects {
objects(first: 500000) {
edges {
node {
... on BasicObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ const CaseRfiKnowledgeCorrelation = createFragmentContainer(
x_opencti_order
x_opencti_color
}
objects {
objects(first: 500000) {
edges {
node {
... on BasicObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ const CaseRftKnowledgeCorrelation = createFragmentContainer(
x_opencti_order
x_opencti_color
}
objects {
objects(first: 500000) {
edges {
node {
... on BasicObject {
Expand Down

0 comments on commit f89fbb0

Please sign in to comment.