Assets
Assets are used for storing functions, queries, constants, secrets, and connections for seamless development.
Functions & Classes
Reusable code snippets that encapsulate specific logic or operations or classes. This promotes code modularity, readability, and reduces duplication.
Queries
Predefined SQL or other data retrieval and manipulation statements used for read/write from databases/warehouses.
Constants & Secrets
Environment variables, API keys, cloud configs can be stored and accessed from here. It prevents manual sharing of codes, accidental git commits exposing credentials etc.
Connections
Connections contain database credentials with databases like Snowflake, Databricks, Postgres etc.
Last updated