ContractSpec docs

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.

mobileLanding.page.get

Get content for a native landing companion route.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • Tags: mobile, expo, landing, page
  • File: packages/apps/mobile-monolith/src/contracts/mobile-landing.contract.ts
  • field.key.label
    mobileLanding.page.get
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    mobileLanding.page.get
    field.description.label

    Get content for a native landing companion route.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.core
  • Tags: mobile, expo, landing, page
  • File: packages/apps/mobile-monolith/src/contracts/mobile-landing.contract.ts
  • field.tags.label
    mobile,expo,landing,page
    field.owners.label
    @platform.core
    field.stability.label
    experimental

    Get content for a native landing companion route.

    Goal

    Render web-landing public navigation pages inside Expo.

    Context

    Used by Expo Router route screens.

    IO

    **Input**: `LandingPageGetInput`

    **Output**: `LandingPageOutput`

    Source Definition

    export const MobileLandingPageGetQuery = defineQuery({
    	meta: {
    		key: 'mobileLanding.page.get',
    		version: '1.0.0',
    		description: 'Get content for a native landing companion route.',
    		goal: 'Render web-landing public navigation pages inside Expo.',
    		context: 'Used by Expo Router route screens.',
    		owners: ['@platform.core'],
    		tags: ['mobile', 'expo', 'landing', 'page'],
    		stability: 'experimental',
    	},
    	io: {
    		input: LandingPageGetInput,
    		output: LandingPageOutput,
    	},
    	policy: {
    		auth: 'anonymous',
    	},
    });