Skip to content

Commit

Permalink
Adding pin
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinMendelGleason committed Feb 22, 2024
1 parent 01ee382 commit 7967de6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion terminusdb_client/client/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1531,7 +1531,7 @@ def query(
get_data_version: bool = False,
last_data_version: Optional[str] = None,
streaming: bool = False,
# file_dict: Optional[dict] = None,
library: Optional[str] = None,
) -> Union[dict, str, WoqlResult]:
"""Updates the contents of the specified graph with the triples encoded in turtle format Replaces the entire graph contents
Expand Down Expand Up @@ -1569,6 +1569,8 @@ def query(
request_woql_query = woql_query
query_obj["query"] = request_woql_query
query_obj["streaming"] = streaming
if library:
query_obj["library"] = library

headers = self._default_headers.copy()
if last_data_version is not None:
Expand Down

0 comments on commit 7967de6

Please sign in to comment.