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.
graphql-rate-limit
Advanced tools
A GraphQL directive to add basic but granular rate limiting to your Queries or Mutations.
max
per window
argumentsyarn add graphql-rate-limit
directive @rateLimit(
max: Int,
window: Int,
message: String,
identityArgs: [String],
) on FIELD_DEFINITION
type Query {
# Rate limit to 5 per second
getItems: [Item] @rateLimit(window: 1000, max: 5)
# Rate limit access per item ID
getItem(id: ID!): Item @rateLimit(identityArgs: ["id"])
}
type Mutation {
# Rate limit with a custom error message
createItem(title: String!): Item @rateLimit(message: "You are doing that too often.")
}
Create a configured GraphQLRateLimit class.
const { createRateLimitDirective } = require('graphql-rate-limit');
// OR
import { createRateLimitDirective } from 'graphql-rate-limit';
const GraphQLRateLimit = createRateLimitDirective({
/**
* `identifyContext` is required and used to identify the user/client. The most likely cases
* are either using the context's request.ip, or the user ID on the context.
* A function that accepts the context and returns a string that is used to identify the user.
*/
identifyContext: (ctx) => ctx.user.id, // Or could be something like: return ctx.req.ip;
/**
* `store` is optional as it defaults to an InMemoryStore. See the implementation of InMemoryStore if
* you'd like to implement your own with your own database.
*/
store: new MyCustomStore(),
});
Add GraphQLRateLimit to your GraphQL server configuration. Example using Apollo Server:
const server = new ApolloServer({
typeDefs,
resolvers,
schemaDirectives: {
rateLimit: GraphQLRateLimit
}
});
Use in your GraphQL Schema.
# This must be added to the top of your schema.
directive @rateLimit(
max: Int,
window: Int,
message: String,
identityArgs: [String],
) on FIELD_DEFINITION
type Query {
# Limit queries to getThings to 10 per minute.
getThings: [Thing] @rateLimit(max: 10, window: 60000)
}
type Query {
# Limit attempts to login with a particular email to 10 per minute.
login(email: String!, password: String!): String @rateLimit(max: 10, window: 60000, identityArgs: ["email"])
}
FAQs
Add Rate Limiting To Your GraphQL Resolvers πββ
We found that graphql-rate-limit 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.