collections_trace_query_data_elements

Get data elements for all steps of a provided dataview query

Functions

async pydelfini.delfini_core.api.collections.collections_trace_query_data_elements.asyncio(collection_id, version_id, *, client, body)[source]

Get data elements for all steps of a provided dataview query

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Union[QueryDataElements]

Return type:

QueryDataElements

async pydelfini.delfini_core.api.collections.collections_trace_query_data_elements.asyncio_detailed(collection_id, version_id, *, client, body)[source]

Get data elements for all steps of a provided dataview query

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Response[Union[QueryDataElements, ServerError]]

Return type:

Response[QueryDataElements | ServerError]

pydelfini.delfini_core.api.collections.collections_trace_query_data_elements.sync(collection_id, version_id, *, client, body)[source]

Get data elements for all steps of a provided dataview query

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Union[QueryDataElements]

Return type:

QueryDataElements

pydelfini.delfini_core.api.collections.collections_trace_query_data_elements.sync_detailed(collection_id, version_id, *, client, body)[source]

Get data elements for all steps of a provided dataview query

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Returns:

Response[Union[QueryDataElements, ServerError]]

Return type:

Response[QueryDataElements | ServerError]