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

Commit 60b085f

Browse files
author
Samuel Hassine
committed
[client] Fix incidents listing (#156)
1 parent 277e68a commit 60b085f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pycti/entities/opencti_x_opencti_incident.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def list(self, **kwargs):
127127
)
128128
query = (
129129
"""
130-
query XOpenCTIIncidents($filters: [IncidentsFiltering], $search: String, $first: Int, $after: ID, $orderBy: XOpenCTIIncidentsOrdering, $orderMode: OrderingMode) {
130+
query XOpenCTIIncidents($filters: [XopenCTIIncidentsFiltering], $search: String, $first: Int, $after: ID, $orderBy: XOpenCTIIncidentsOrdering, $orderMode: OrderingMode) {
131131
xOpenCTIIncidents(filters: $filters, search: $search, first: $first, after: $after, orderBy: $orderBy, orderMode: $orderMode) {
132132
edges {
133133
node {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from setuptools.command.install import install
77

8-
VERSION = "4.3.1"
8+
VERSION = "4.3.2"
99

1010
with open("README.md", "r") as fh:
1111
long_description = fh.read()

0 commit comments

Comments
 (0)