Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[frontend] simple stix object relationship fragment update (#6865) #7472

Merged
merged 4 commits into from
Jul 3, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,9 @@ const SimpleStixObjectOrStixRelationshipStixCoreRelationshipLineFragment = creat
entity_type
parent_types
observable_value
representative {
main
}
objectMarking {
id
definition_type
Expand Down Expand Up @@ -406,6 +409,44 @@ const SimpleStixObjectOrStixRelationshipStixCoreRelationshipLineFragment = creat
}
... on StixCoreRelationship {
relationship_type
from {
... on BasicObject {
id
entity_type
ValentinBouzinFiligran marked this conversation as resolved.
Show resolved Hide resolved
}
... on BasicRelationship {
id
}
... on StixCyberObservable {
representative {
main
}
}
... on StixDomainObject {
representative {
main
}
}
}
to {
... on BasicObject {
id
entity_type
}
... on BasicRelationship {
id
}
... on StixCyberObservable {
representative {
main
}
}
... on StixDomainObject {
representative {
main
}
}
}
}
}
fromId
Expand Down Expand Up @@ -569,6 +610,9 @@ const SimpleStixObjectOrStixRelationshipStixCoreRelationshipLineFragment = creat
entity_type
parent_types
observable_value
representative {
main
}
objectMarking {
id
definition_type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3897,6 +3897,12 @@ const StixCoreRelationshipOverview = createFragmentContainer(
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down Expand Up @@ -3981,8 +3987,10 @@ const StixCoreRelationshipOverview = createFragmentContainer(
... on Case {
name
}
... on StixCyberObservable {
observable_value
... on StixDomainObject {
representative {
main
}
}
... on ObservedData {
name
Expand Down Expand Up @@ -4181,6 +4189,12 @@ const StixCoreRelationshipOverview = createFragmentContainer(
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down Expand Up @@ -4284,6 +4298,12 @@ const StixCoreRelationshipOverview = createFragmentContainer(
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,12 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down Expand Up @@ -568,15 +574,29 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
id
entity_type
}
... on StixDomainObject {
representative {
main
}
}
... on StixCoreObject {
created_at
representative {
main
}
}
... on StixCoreRelationship {
created_at
start_time
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down Expand Up @@ -665,6 +685,12 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down Expand Up @@ -2960,6 +2986,9 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on DataComponent {
name
Expand Down Expand Up @@ -3119,6 +3148,12 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
id
entity_type
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on BasicRelationship {
id
entity_type
Expand Down Expand Up @@ -3217,6 +3252,12 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
stop_time
created
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on AttackPattern {
name
}
Expand Down Expand Up @@ -3404,6 +3445,9 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
... on ObservedData {
name
Expand Down Expand Up @@ -3631,6 +3675,9 @@ export const RelationshipsStixCoreRelationshipLine = createFragmentContainer(
}
... on StixCyberObservable {
observable_value
representative {
main
}
}
}
to {
Expand Down