Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
graphql-operation-to-pojo
Advanced tools
Converts GraphQL operations to plain old JS objects (POJOs), ready to to be serialized to JSON
Converts GraphQL operations to plain old JS objects (POJOs), ready to to be serialized to JSON.
This can be used to parse the info
argument (GraphQLResolveInfo
) passed to GraphQL resolvers.
npm i -S graphql-operation-to-pojo
Or:
yarn add graphql-operation-to-pojo
myResolver(obj, args, context, info) {
const queryPOJO = graphqlOperationToPOJO(info)
...
}
There is also a helper function to serialize the result to a JSON string:
const jsonString = graphqlOperationToJSON(info)
(This is equivalent to calling JSON.stringify(graphqlOperationToPOJO(info))
)
Options can optionally be passed as a second argument, e.g.:
graphqlOperationToPOJO(info, {
includeFieldPath: true,
includeReturnType: true,
})
Available options:
includeFieldPath
: boolean (defaults to false)
If true, a path
property will be added to each field object and set to the path to the field from the root of the query, e.g. 'hero.name'
includeReturnTypes
: boolean (defaults to false)
If true, the return type of each field will be included in the result.
Tip: When using
includeReturnTypes
, you can usegetNamedType()
from graphql.js to strip any wrapping non-null or list types and get the underlying type. For example:import { getNamedType } from 'graphql' ... /* Suppose we're running a query that returns a list of users: type Query { users: [User!]! } */ const returnType = getNamedType(queryPojo.fields[0].returnType) console.log(returnType.toString()) // Output: 'User'
Given the query:
query {
hero(episode: NEWHOPE) {
name
friends {
name
appearsIn
}
}
}
graphqlOperationToPOJO
will return:
{
"operation": "query",
"fields": [
{
"name": "hero",
"fields": [
{
"name": "name"
},
{
"name": "friends",
"fields": [
{
"name": "name"
},
{
"name": "appearsIn"
}
]
}
],
"arguments": {
"episode": "NEWHOPE"
}
}
]
}
If the query contains aliases, the field object will include an alias
property, e.g.:
{
hero(episode: NEWHOPE) {
heroName: name
}
}
{
"operation": "query",
"fields": [
{
"name": "hero",
"fields": [
{
"name": "name",
"alias": "heroName"
}
],
"arguments": {
"episode": "NEWHOPE"
}
}
]
}
Type conditions for fragments are stored in a fragmentType
property, e.g.:
{
character(id: "1000") {
... on Human {
id
name
friends {
id
}
}
... on Droid {
name
friends {
name
}
}
}
}
{
"operation": "query",
"fields": [
{
"name": "character",
"fields": [
{
"name": "id",
"fragmentType": "Human"
},
{
"name": "name",
"fragmentType": "Human"
},
{
"name": "friends",
"fragmentType": "Human",
"fields": [
{
"name": "id"
}
]
},
{
"name": "name",
"fragmentType": "Droid"
},
{
"name": "friends",
"fragmentType": "Droid",
"fields": [
{
"name": "name"
}
]
}
],
"arguments": {
"id": "1000"
}
}
]
}
FAQs
Converts GraphQL operations to plain old JS objects (POJOs), ready to to be serialized to JSON
We found that graphql-operation-to-pojo 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.