# dict_to_yaml_str

> **Function** in `langchain_neo4j`

📖 [View in docs](https://reference.langchain.com/python/langchain-neo4j/vectorstores/neo4j_vector/dict_to_yaml_str)

Convert a dictionary to a YAML-like string without using external libraries.

Parameters:
- input_dict (dict): The dictionary to convert.
- indent: The current indentation level.

Returns:
- str: The YAML-like string representation of the input dictionary.

## Signature

```python
dict_to_yaml_str(
    input_dict: Dict,
    indent: int = 0,
) -> str
```

---

[View source on GitHub](https://github.com/langchain-ai/langchain-neo4j/blob/cb87fdba5ae2f6bc5092eb76a322e27c46512846/libs/neo4j/langchain_neo4j/vectorstores/neo4j_vector.py#L89)