1
2
3
4
5
6
import { fetchNotion } from "https://esm.town/v/andreterron/fetchNotion";
export let notionSearch = async ({token, query}) => {
const response = await fetchNotion({token, method: "POST", path: "v1/search", body: {page_size: 100, query}})
return response.results
}