Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
contentful-parsers
Advanced tools
Library of useful parsers to use when working with Contentful API responses.
Toolbox of useful parsers to use when working with Contentful API responses.
Via npm
npm install contentful-parsers
Via Yarn
yarn add contentful-parsers
fieldsParser
Probably the most common parser of the lot. This will take a Contentful response,
either an array or a single item, and parse the items to flatten all of the fields
objects and remove the majority of the sys
objects, except for a reference to
the sys.contentType.sys.id
, in case you are doing any based on that for your
rendering.
import contentful from 'contentful';
import { fieldsParser } from 'contentful-parsers';
const client = contentful.createClient({
space: '[SPACE_ID]',
accessToken: '[ACCESS_TOKEN]',
});
const response = await client.getEntry('[ENTRY_ID]');
const data = fieldsParser(response);
graphqlParser
Takes a standard standard REST response from the Contentful API and restructures it to allow it to be queryable via a GraphQL query.
Since this will probably commonly be used with graphql-anywhere
for performing the
queries against the parsed data, a basic resolver is included in the paackage as
well, contentfulResolver
.
import { graphql } from 'graphql-anywhere/lib/async'
import contentful from 'contentful';
import { graphqlParser, contentfulResolver } from 'contentful-parsers';
const entryQuery = gql`
entry {
sys {
id
}
title
copy
}
`
const client = contentful.createClient({
space: '[SPACE_ID]',
accessToken: '[ACCESS_TOKEN]',
});
const response = await client.getEntry('[ENTRY_ID]');
const parsedData = graphqlParser('entry', response);
graphql(
contentfulResolver,
entryQuery,
parsedData,
)
.then(data => {
// data -> Contentful model filtered via GraphQL query
})
.catch(error => console.error(error));
FAQs
Library of useful parsers to use when working with Contentful API responses.
The npm package contentful-parsers receives a total of 6,468 weekly downloads. As such, contentful-parsers popularity was classified as popular.
We found that contentful-parsers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.