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

# Collection Types

> TypeScript interfaces for collections

## ShopifyCollection

```typescript theme={null}
interface ShopifyCollection {
    id: string
    handle: string
    title: string
    description: string
    descriptionHtml: string
    image: ShopifyImage | null
    updatedAt: string
    onlineStoreUrl: string | null
    seo: ShopifySeo
}
```

***

## CollectionsResult

Response from `openbridge.collections.list()`

```typescript theme={null}
interface CollectionsResult {
    items: ShopifyCollection[]
    pageInfo: ShopifyPageInfo
}
```

***

## CollectionField

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

```typescript theme={null}
type CollectionField =
    | 'id'
    | 'handle'
    | 'title'
    | 'description'
    | 'descriptionHtml'
    | 'image'
    | 'updatedAt'
    | 'onlineStoreUrl'
    | 'seo'
```
