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