![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Simple mapper to remove strapi wrappers
Strapi is one the most popular headless cms, internally wraps the response inside data
, attributes
object, in some scenarios could be verbose, for this reason was created strapi-plugin-transformer, plugin to remove this response wrapper.
However this package does not have support for graphql (you can read more here), it can just be applied to the API Rest responses, that is the main reason for this package be created.
Install package:
# npm
npm install smapper
# yarn
yarn add smapper
# pnpm
pnpm install smapper
Import:
// ESM
import mapper from "smapper";
// CommonJS
const mapper = require("smapper");
We have a graphql like this:
query Posts {
posts {
data {
attributes {
title
content
slug
images {
data {
id
attributes {
name
formats
url
}
}
}
}
}
}
}
And you want remove the data and attributes wrappers, just call the function imported and pass the graphql result as parameter:
import mapper from 'smapper';
import GetPost from './graphql';
const response = await graphql(GetPost);
const mapped = mapper(response);
corepack enable
pnpm install
pnpm dev
This project is originally written as strapi plugin (strapi-plugin-transformer) by:
Made with 💛
Published under MIT License.
v0.0.4
FAQs
Mapper function to transform the Strapi API response
The npm package smapper receives a total of 1 weekly downloads. As such, smapper popularity was classified as not popular.
We found that smapper 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.