> ## Documentation Index
> Fetch the complete documentation index at: https://docs.openbridge.shop/llms.txt
> Use this file to discover all available pages before exploring further.

# Page Types

> TypeScript interfaces for pages

## ShopifyPage

```typescript theme={null}
interface ShopifyPage {
    id: string
    handle: string
    title: string
    body: string
    bodySummary: string
    createdAt: string
    updatedAt: string
    onlineStoreUrl: string | null
    seo: ShopifySeo
}
```

***

## PagesResult

Response from `openbridge.pages.list()`

```typescript theme={null}
interface PagesResult {
    items: ShopifyPage[]
    pageInfo: ShopifyPageInfo
}
```

***

## PageField

Available fields for `.select()` on pages.

```typescript theme={null}
type PageField =
    | 'id'
    | 'handle'
    | 'title'
    | 'body'
    | 'bodySummary'
    | 'createdAt'
    | 'updatedAt'
    | 'onlineStoreUrl'
    | 'seo'
```
