We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae2b0cf + 361eceb commit 127aecbCopy full SHA for 127aecb
thehive4py/endpoints/query.py
@@ -7,6 +7,14 @@ class QueryEndpoint(EndpointBase):
7
def run(
8
self, query: typing.List[dict], exclude_fields: typing.List[str] = []
9
) -> typing.Any:
10
+ """Run any arbitrary queries using TheHive's Query API.
11
+
12
+ This method provides low level access to the Query API to be able to run
13
+ any queries.
14
+ More information on the supported features can be found
15
+ [here](https://docs.strangebee.com/thehive/api-docs/#tag/Query-and-Export/operation/Query%20API).
16
17
+ """
18
return self._session.make_request(
19
"POST",
20
path="/api/v1/query",
0 commit comments