Skip to main content
Warning
This version of dbt Core is nearing the end of its critical support period. For better performance, improved security, and new features, you should upgrade to 1.8, the latest stable version.

About toyaml context method

The toyaml context method can be used to serialize a Python object primitive, eg. a dict or list to a YAML string.

Args:

  • value: The value to serialize to YAML (required)
  • default: A default value to return if the value argument cannot be serialized (optional)

Usage:

{% set my_dict = {"abc": 123} %}
{% set my_yaml_string = toyaml(my_dict) %}

{% do log(my_yaml_string) %}
0