OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Visual query builder interface
Goal
Visually construct data queries and transformations.
Context
Developer tool for data analysis.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { QueryModel } from './query.schema';
export const QueryBuilderPresentation = definePresentation({
meta: {
key: 'analytics.query.builder',
version: '1.0.0',
title: 'Query Builder',
description: 'Visual query builder interface',
domain: 'analytics',
owners: ['@analytics-dashboard'],
tags: ['analytics', 'query', 'builder'],
stability: StabilityEnum.Experimental,
goal: 'Visually construct data queries and transformations.',
context: 'Developer tool for data analysis.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'QueryBuilder',
props: QueryModel,
},
targets: ['react'],
policy: {
flags: ['analytics.queries.enabled'],
},
});