lookml-explore
Installation
SKILL.md
Instructions
1. Core Standards
- Naming Convention:
snake_casefor the Explore name. - Required Parameters:
description: 100% Coverage. Every Explore MUST have a description.label: A user-friendly name for the Explore in the UI.view_name: Defaults to explore name, but explicit definition is safer.
- Joins:
relationship: Required (one_to_one, many_to_one).sql_on: Required. Use${left.id} = ${right.id}syntax.type: defaults toleft_outer. Useinnerorfull_outerexplicitly if needed.
- Formatting:
- Do NOT use
fromto rename views just for aesthetics. Useview_labelinstead. - Exception: Polymorphic joins, Self-joins, Rescoping extensions.
- Do NOT use