Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit fe0a730

Browse files
authored
[client-python] missing mandatory input in Case Rfi/Rft queries (#725)
1 parent d9210e0 commit fe0a730

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pycti/entities/opencti_case_rfi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ def add_stix_object_or_stix_relationship(self, **kwargs):
747747
},
748748
)
749749
query = """
750-
mutation CaseRfiEditRelationAdd($id: ID!, $input: StixRefRelationshipAddInput) {
750+
mutation CaseRfiEditRelationAdd($id: ID!, $input: StixRefRelationshipAddInput!) {
751751
stixDomainObjectEdit(id: $id) {
752752
relationAdd(input: $input) {
753753
id

pycti/entities/opencti_case_rft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def add_stix_object_or_stix_relationship(self, **kwargs):
746746
},
747747
)
748748
query = """
749-
mutation CaseRftEditRelationAdd($id: ID!, $input: StixRefRelationshipAddInput) {
749+
mutation CaseRftEditRelationAdd($id: ID!, $input: StixRefRelationshipAddInput!) {
750750
stixDomainObjectEdit(id: $id) {
751751
relationAdd(input: $input) {
752752
id

0 commit comments

Comments
 (0)