# load_query

> **Function** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/utilities/clickup/load_query)

Parse a JSON string and return the parsed object.

If parsing fails, returns an error message.

:param query: The JSON string to parse.
:return: A tuple containing the parsed object or None and an error message or None.

## Signature

```python
load_query(
    query: str,
    fault_tolerant: bool = False,
) -> Tuple[Optional[Dict], Optional[str]]
```

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/d5ea8358933260ad48dd31f7f8076555c7b4885a/libs/community/langchain_community/utilities/clickup.py#L199)