Skip to content

Commit 33500e6

Browse files
Automatically update python client (ref: Cosmo-Tech/cosmotech-api@38b9f0a)
Co-authored-by: neomatamune <neomatamune@users.noreply.github.com>
1 parent 0b88df6 commit 33500e6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

cosmotech_api/api/dataset_api.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7328,7 +7328,7 @@ def twingraph_query(
73287328
_content_type: Optional[StrictStr] = None,
73297329
_headers: Optional[Dict[StrictStr, Any]] = None,
73307330
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
7331-
) -> str:
7331+
) -> List[object]:
73327332
"""Return the result of a query made on the graph instance as a json
73337333
73347334
Run a query on a graph instance and return the result as a json
@@ -7372,7 +7372,7 @@ def twingraph_query(
73727372
)
73737373

73747374
_response_types_map: Dict[str, Optional[str]] = {
7375-
'200': "str",
7375+
'200': "List[object]",
73767376
}
73777377
response_data = self.api_client.call_api(
73787378
*_param,
@@ -7403,7 +7403,7 @@ def twingraph_query_with_http_info(
74037403
_content_type: Optional[StrictStr] = None,
74047404
_headers: Optional[Dict[StrictStr, Any]] = None,
74057405
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
7406-
) -> ApiResponse[str]:
7406+
) -> ApiResponse[List[object]]:
74077407
"""Return the result of a query made on the graph instance as a json
74087408
74097409
Run a query on a graph instance and return the result as a json
@@ -7447,7 +7447,7 @@ def twingraph_query_with_http_info(
74477447
)
74487448

74497449
_response_types_map: Dict[str, Optional[str]] = {
7450-
'200': "str",
7450+
'200': "List[object]",
74517451
}
74527452
response_data = self.api_client.call_api(
74537453
*_param,
@@ -7522,7 +7522,7 @@ def twingraph_query_without_preload_content(
75227522
)
75237523

75247524
_response_types_map: Dict[str, Optional[str]] = {
7525-
'200': "str",
7525+
'200': "List[object]",
75267526
}
75277527
response_data = self.api_client.call_api(
75287528
*_param,

docs/DatasetApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1980,7 +1980,7 @@ Name | Type | Description | Notes
19801980
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
19811981

19821982
# **twingraph_query**
1983-
> str twingraph_query(organization_id, dataset_id, dataset_twin_graph_query)
1983+
> List[object] twingraph_query(organization_id, dataset_id, dataset_twin_graph_query)
19841984
19851985
Return the result of a query made on the graph instance as a json
19861986

@@ -2039,7 +2039,7 @@ Name | Type | Description | Notes
20392039

20402040
### Return type
20412041

2042-
**str**
2042+
**List[object]**
20432043

20442044
### Authorization
20452045

0 commit comments

Comments
 (0)