Skip to main content
After this guide, you can evaluate expressions, retain variables during a prompt session, and query the Neuron object database.

Prerequisites

  • A configured Neuron.
  • A user role allowed to open the Script prompt.
  • Read access to the data you intend to query.

Open the prompt

From the administration UI, open Script. The prompt evaluates one expression or statement sequence and renders the resulting object using an available content renderer.

Evaluate values

Expected result:
Assign with := and separate statements with semicolons:

Work with vectors

Function names are case-insensitive in normal Script usage, but keep the documented casing in shared code.

Create objects

Query persisted objects

Collections and types vary by installation. Start with a known application type or use Properties(TypeName) to inspect the fields available on persisted objects.

Produce a table

Many query results render automatically. To transpose a vector of records into table form, use T:

Handle an error

Do not expose raw exception messages to untrusted web users; log a correlation ID and return a safe message.

Next steps