Join us at Snowflake Summit June 26-29 in Las Vegas!

Rel Modules

Nate Nystrom

04 November 2021

less than a minute read

Our declarative modeling language Rel now supports modules!

A module groups together one or more declarations. For instance

module person
    def name = "Sherlock Holmes"
    module address
        def street = "221B Baker Street"
        def city = "London"
        def country = "UK"
    end
    def telephone = "+44 202-456-1111"
end

This will display as below:

def output = person[:address][:street]

Relation: "221B Baker Street"

Modules can be imported into a lexical scope using the with construct, allowing the use of short names. The with construct can also be used to rename imported members.

with person use name, telephone as phone
with person:address use street
def output = name
def output = phone
def output = street

Relation:

"+44 202-456-1111"
"221B Baker Street"
"Sherlock Holmes"

Modules are relations and computations can be performed over them like any other relation:

def person_without_phone(key, values...) =
        person(key, values...) and
        key != :telephone
def output = json_string[person_without_phone]

Relation:

" { "address": { "city": "London", "country": "UK", "street": "221B Baker Street" }, "name": "Sherlock Holmes" }"

For a more detailed introduction to modules, see the documentation.

Related Posts

Get Early Access

Join our community, keep up to date with the latest developments in our monthly newsletter, and get early access to RelationalAI.