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

Commit c5b431f

Browse files
Archidoitlndrtrbn
authored andcommitted
[frontend/backend] PIR -> Pir
1 parent 96a2302 commit c5b431f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pycti/api/opencti_api_pir.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def add_pir_dependency(self, **kwargs):
88
id = kwargs.get("id", None)
99
input = kwargs.get("input", None)
1010
query = """
11-
mutation PirAddDependency($id: ID!, $input: PIRDependencyAddInput!) {
11+
mutation PirAddDependency($id: ID!, $input: PirDependencyAddInput!) {
1212
pirAddDependency(id: $id, input: $input)
1313
}
1414
"""
@@ -24,7 +24,7 @@ def delete_pir_dependency(self, **kwargs):
2424
id = kwargs.get("id", None)
2525
input = kwargs.get("input", None)
2626
query = """
27-
mutation PirDeleteDependency($id: ID!, $input: PIRDependencyDeleteInput!) {
27+
mutation PirDeleteDependency($id: ID!, $input: PirDependencyDeleteInput!) {
2828
pirDeleteDependency(id: $id, input: $input)
2929
}
3030
"""

0 commit comments

Comments
 (0)