⚠️ Deprecated ⚠️

use the NotionAPILoader class instead.

This feature is deprecated and will be removed in the future.

It is not recommended for use.

Example

const loader = new NotionDBLoader({
pageSizeLimit: 10,
databaseId: "{databaseId}",
notionIntegrationToken: "{notionIntegrationToken}",
});
const docs = await loader.load();

Hierarchy (view full)

Implements

Constructors

Properties

databaseId: string
integrationToken: string
notionApiVersion: string
pageSizeLimit: number

Methods

  • Loads the documents and splits them using a specified text splitter.

    Parameters

    • splitter: TextSplitter = ...

    Returns Promise<Document[]>

    A Promise that resolves with an array of Document instances, each split according to the provided TextSplitter.

Generated using TypeDoc