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.list

List of saved queries

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

    List of saved queries

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

    List of saved queries

    Goal

    Browse and manage saved data queries.

    Context

    The library of reusable data definitions.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { QueryModel } from './query.schema';
    
    export const QueriesListPresentation = definePresentation({
    	meta: {
    		key: 'analytics.query.list',
    		version: '1.0.0',
    		title: 'Queries List',
    		description: 'List of saved queries',
    		domain: 'analytics',
    		owners: ['@analytics-dashboard'],
    		tags: ['analytics', 'queries', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Browse and manage saved data queries.',
    		context: 'The library of reusable data definitions.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'QueriesList',
    		props: QueryModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['analytics.queries.enabled'],
    	},
    });