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.

analytics.query.builder

Visual query builder interface

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @analytics-dashboard
  • Tags: analytics, query, builder
  • File: packages/examples/analytics-dashboard/src/query/query.presentation.ts
  • field.key.label
    analytics.query.builder
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    analytics.query.builder
    field.description.label

    Visual query builder interface

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @analytics-dashboard
  • Tags: analytics, query, builder
  • File: packages/examples/analytics-dashboard/src/query/query.presentation.ts
  • field.tags.label
    analytics,query,builder
    field.owners.label
    @analytics-dashboard
    field.stability.label

    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'],
    	},
    });