Skip to content

Keyword

registry

Back to Index
{ text -> value | nothing }

Provides access to the Registry. Secret keys can be accessed. The type of the Registry value will be converted to a native Filtrera type.

If the specified path is invalid, an Error record will be returned to signal that there’s a problem. Not just a missing entry.

Examples

Fetching a single value

from registry->'integrations/my-reactor/key'
// Returns the value of the registry key 'integrations/my-reactor/key'

Fetching all channels

import 'maps'
import 'text'
from
registry
entries
where r => r.key is /^channels\/.+/
select r => r.value with {
channelKey = r.key slice 9
}
Back to Index