
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
nexus-plugin-dynamic-mutation
Advanced tools
A plugin for Nexus to automatically create object type
yarn add nexus-plugin-dynamic-mutation
import {extendType} from 'nexus';
export const Mutation = extendType({
type: 'Mutation',
definition(t) {
t.dynamicMutation('login', {
name: 'Login',
description: 'Handleing Login mutation',
nonNullDefaults: {
input: true,
output: false,
},
input(t) {
t.string('username');
t.string('password');
},
payload(t) {
t.string('message');
t.field('user', {
type: 'User',
});
},
async resolve(_, args, ctx) {
const {input} = args;
const user = await fetch('/api/login', {
method: 'POST',
body: JSON.stringify(input),
});
return {
message: 'Success!',
user,
};
},
});
},
});
type Mutation {
login(input: LoginInput!): LoginPayload!
}
input LoginInput {
username: String!
password: String!
}
type LoginPayload {
message: String
user: User
}
Handling GraphQL errors like a champ with interfaces and unions
Plugin will select the first member object type to fallback resolveType
import {extendType, interfaceType, objectType} from 'nexus';
export const ErrorInterface = interfaceType({
name: 'Error',
definition(t) {
t.string('message');
},
resolveType() {
return null;
},
});
export const Mutation = extendType({
type: 'Mutation',
definition(t) {
t.dynamicMutation('register', {
name: 'Register',
input(t) {
t.string('username');
t.string('password');
t.string('fullname');
},
payload: {
result: 'User', // First type to fallback resolveType
validationError(t) {
t.implements('Error');
t.nullable.string('username');
t.nullable.string('password');
},
countryBlockedError(t) {
t.implements('Error');
t.nullable.string('description');
},
},
async resolve(_, args, ctx) {
const {input} = args;
if (false === validate(input)) {
return {
message: 'Validation input failed',
username: 'Username has already been taken',
__typename: 'RegisterValidationError', // Required
};
}
if (false === checkRegion(ctx)) {
return {
message: 'Blocked',
description: 'Registration not available in your region',
__typename: 'RegisterCountryBlockedError', // Required
};
}
const user = await fetch('/api/user', {
method: 'POST',
body: JSON.stringify(input),
});
// Fallback resolveType
return user;
},
});
},
});
type Mutation {
register(input: RegisterInput!): RegisterPayload!
}
input RegisterInput {
fullname: String
password: String
username: String
}
type RegisterCountryBlockedError implements Error {
description: String
message: String!
}
type RegisterValidationError implements Error {
message: String!
password: String
username: String
}
union RegisterPayload =
RegisterCountryBlockedError
| RegisterValidationError
| User
mutation Register {
register(
input: {username: "johndoe", password: "123456", fullname: "John Doe"}
) {
... on Error {
message
}
... on RegisterValidationError {
username
password
}
... on RegisterCountryBlockedError {
description
}
... on User {
id
username
fullname
}
}
}
MIT © Nghiep
FAQs
A plugin for Nexus to automatically create object type
The npm package nexus-plugin-dynamic-mutation receives a total of 0 weekly downloads. As such, nexus-plugin-dynamic-mutation popularity was classified as not popular.
We found that nexus-plugin-dynamic-mutation 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.