Usage
dimension: field_name {
alias: [old_field_name, old_field_name, …]
}
}
Hierarchyalias |
Possible Field TypesDimension, Dimension Group, Measure, Filter, ParameterAcceptsA square-bracketed list of field names |
Definition
The alias
parameter provides alternative names for a field that might appear in the URL for a query. It can be useful in cases when field names in a model change, but you have pre-existing URLs to queries that you want to keep functioning.
The following example shows how you could change a field named count
to the new name number_of_items
, without breaking any existing queries that refer to count
.
You can also provide multiple aliases, in case you rename a field multiple times. For example, if you renamed the above number_of_items
field to number_of_order_items
, you could use:
To use alias
with a dimension group, change the dimension group name, not every field in the dimension group. For example, to rename the dimension group created_date
to order_date
:
Note that alias
is used only to keep URLs functioning. It should not be used when referencing fields in LookML. For example:
Things to know
If you alias
a field as a name already taken by another field, the LookML Validator will return an error.