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.

examples.data-grid-showcase.rows.list

Lists the demo rows used by the data-grid showcase.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • Tags: examples, table, data-grid
  • File: packages/examples/data-grid-showcase/src/contracts/data-grid-showcase.operation.ts
  • field.key.label
    examples.data-grid-showcase.rows.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    examples.data-grid-showcase.rows.list
    field.description.label

    Lists the demo rows used by the data-grid showcase.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • Tags: examples, table, data-grid
  • File: packages/examples/data-grid-showcase/src/contracts/data-grid-showcase.operation.ts
  • field.tags.label
    examples,table,data-grid
    field.owners.label
    @platform.core
    field.stability.label
    experimental

    Lists the demo rows used by the data-grid showcase.

    Goal

    Back the sample table data view contract.

    Context

    Example and documentation surfaces.

    Source Definition

    import { defineQuery } from '@lssm-tech/lib.contracts-spec/operations';
    import { fromZod } from '@lssm-tech/lib.schema';
    import { z } from 'zod';
    
    export const ListDataGridShowcaseRowsQuery = defineQuery({
    	meta: {
    		key: 'examples.data-grid-showcase.rows.list',
    		version: '1.0.0',
    		title: 'List Data Grid Showcase Rows',
    		description: 'Lists the demo rows used by the data-grid showcase.',
    		goal: 'Back the sample table data view contract.',
    		context: 'Example and documentation surfaces.',
    		owners: ['@platform.core'],
    		tags: ['examples', 'table', 'data-grid'],
    		stability: 'experimental',
    	},
    	io: {
    		input: fromZod(
    			z.object({
    				projectId: z.string().optional(),
    			})
    		),
    		output: fromZod(z.array(rowSchema)),
    	},
    	policy: {
    		auth: 'anonymous',
    	},
    });