[](https://npmjs.org/package/contentful-collection) [](https://npmjs.org/package/contentful-collection) [![License]
npm install contentful-collection



Get all pages of any contentful collection
yarn add contentful-collection
`
npm
`
npm i contentful-collection
`$3
Query entries with
contentful.js
`js
import contentful from "contentful";
import getContentfulCollection from "contentful-collection";const client = contentful.createClient({
space: "",
accessToken: ""
});
const query = {content_type: ""};
const allItems = await getContentfulCollection(q => client.getEntries(q), query)
``