Trillo Workbench Lessons
  • Introduction
    • Sample Application
  • Introduction to Lessons
    • IDE Lessons
    • Annotated Directory Structure
  • New classes using workbench UI
  • Save many records into tables using the workbench UI
  • New function using Workbench UI
  • Introduction to Code Lessons
    • Anatomy of Trillo Function
  • Begin Code Lessons
    • Paginated list
    • Pagination using SQL Query
    • DataIterator
    • Read file from cloud storage bucket
    • Generating signed URL for a file download
    • Import a CSV file from bucket into BigQuery
    • Query a dataset of BigQuery
    • Using an Document AI Processor
    • Chat using GenAI
    • Function calling another function
    • Accessing Runtime Context
    • Write a workflow (pipeline for data processing)
  • Appendixes
    • ServerlessFunction
    • Map, List and Tree
    • Logs and Audit Logs
    • DataRequest Class
    • DataResponse Class
    • DataIterator Class
    • Result
Powered by GitBook
On this page
  1. Introduction

Sample Application

This page provides details about the sample application being used throughout the lessons

The sample application used for the lesson is an order management application. The following are the main classes/tables of the application.

  1. Customer: A customer in the order management system.

  2. Order: A customer’s order.

  3. LineItem: Items included in the order.

  4. Customer to Order is 1 to many.

  5. Order to LineItem is 1 to many.

In addition to these, we will refer to several classes provided by Trillo Workbench (called System classes).

  1. User

  2. Folder

  3. File

  4. …

PreviousIntroductionNextIntroduction to Lessons

Last updated 1 year ago