contentful-collection
v0.0.4
Published
[![Version](https://img.shields.io/npm/v/contentful-collection.svg)](https://npmjs.org/package/contentful-collection) [![Downloads/week](https://img.shields.io/npm/dw/contentful-collection.svg)](https://npmjs.org/package/contentful-collection) [![License]
Downloads
140,372
Readme
(get) Contentful Collection
Get all pages of any contentful collection
Install
yarn
yarn add contentful-collection
npm
npm i contentful-collection
Usage
Query entries with contentful.js
import contentful from "contentful";
import getContentfulCollection from "contentful-collection";
const client = contentful.createClient({
space: "<space>",
accessToken: "<token>"
});
const query = {content_type: "<my-content-type>"};
const allItems = await getContentfulCollection(q => client.getEntries(q), query)