From lisa-nestjs
Comprehensive guide for NestJS GraphQL development using Apollo and code-first approach. This skill should be used when writing GraphQL resolvers, mutations, queries, types, subscriptions, or implementing advanced features like field middleware, complexity limits, and custom scalars. Also covers project-specific patterns including zero-trust auth decorators and DataLoader integration.
npx claudepluginhub codyswanngt/lisa --plugin lisa-nestjsThis skill uses the workspace's default tool permissions.
This skill provides comprehensive guidance for building GraphQL APIs with NestJS using Apollo Server and the code-first approach. It covers official NestJS GraphQL patterns plus project-specific implementations for authentication, authorization, and data loading.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
This skill provides comprehensive guidance for building GraphQL APIs with NestJS using Apollo Server and the code-first approach. It covers official NestJS GraphQL patterns plus project-specific implementations for authentication, authorization, and data loading.
| Decorator | Purpose | Import |
|---|---|---|
@Resolver() | Define resolver class | @nestjs/graphql |
@Query() | Define query operation | @nestjs/graphql |
@Mutation() | Define mutation operation | @nestjs/graphql |
@Args() | Extract arguments | @nestjs/graphql |
@Context() | Access GraphQL context | @nestjs/graphql |
@Parent() | Access parent in field resolver | @nestjs/graphql |
@ResolveField() | Define field resolver | @nestjs/graphql |
@ObjectType() | Define GraphQL object type | @nestjs/graphql |
@InputType() | Define GraphQL input type | @nestjs/graphql |
@Field() | Define field on type | @nestjs/graphql |
@Extensions() | Attach metadata to fields | @nestjs/graphql |
| Decorator | GraphQL Type | TypeScript Type |
|---|---|---|
@Field(() => String) | "String!" | string |
@Field(() => Int) | "Int!" | number |
@Field(() => Float) | "Float!" | number |
@Field(() => Boolean) | "Boolean!" | boolean |
@Field(() => ID) | "ID!" | string |
@Field(() => [String]) | "[String!]!" | string[] |
@Field({ nullable: true }) | String | string | null |
import { Args, Context, Mutation, Query, Resolver } from "@nestjs/graphql";
import { Public, Authed } from "../auth";
@Resolver(() => Entity)
export class EntityResolver {
constructor(private readonly entityService: EntityService) {}
@Query(() => Entity, { description: "Retrieve entity by ID" })
@Authed()
async entity(@Args("id", { type: () => ID }) id: string): Promise<Entity> {
return this.entityService.findById(id);
}
@Mutation(() => Entity, { description: "Create new entity" })
@Authed()
async createEntity(
@Args("input") input: CreateEntityInput,
@Context() { req }: GraphQLContext
): Promise<Entity> {
return this.entityService.create(input, req.user.id);
}
}
import { Field, ID, ObjectType } from "@nestjs/graphql";
@ObjectType({ description: "Represents a user in the system" })
export class User {
@Field(() => ID, { description: "Unique identifier" })
id: string;
@Field(() => String, { description: "User's email address" })
email: string;
@Field(() => String, { nullable: true, description: "Display name" })
displayName?: string;
@Field(() => Date, { description: "Account creation timestamp" })
createdAt: Date;
}
import { Field, InputType } from "@nestjs/graphql";
@InputType({ description: "Input for creating a new user" })
export class CreateUserInput {
@Field(() => String, { description: "User's email address" })
email: string;
@Field(() => String, { description: "User's password" })
password: string;
@Field(() => String, { nullable: true, description: "Optional display name" })
displayName?: string;
}
This skill includes detailed reference files for specific topics:
Setup and configuration for NestJS GraphQL with Apollo driver, module configuration, and code-first vs schema-first approaches.
Comprehensive guide to writing resolvers, queries, mutations, field resolvers, and using decorators like @Args, @Context, @Parent.
Creating object types, input types, enums, interfaces, unions, and custom scalars. Includes mapped types (PartialType, PickType, etc.).
Field middleware, query complexity, plugins, subscriptions, and extensions.
Project-specific patterns including zero-trust auth decorators (@Public, @Authed, @Owner, @Groups), DataLoader integration, and GraphQL documentation standards.
@Query() decorator@Public(), @Authed(), or @Groups())@Query(() => ReturnType)@Query(() => ReturnType, { description: "..." })@Args() for parameters with descriptions@Mutation() decorator@Authed())@Context() { req }: GraphQLContext@ResolveField(() => [Comment], { description: "Entity's comments" })
async comments(
@Parent() entity: Entity,
@Context() { loaders }: GraphQLContext
): Promise<Comment[]> {
return loaders.commentsLoader.load(entity.id);
}
getByIds(ids: string[]): Promise<Entity[]>IDataLoaders interfaceDataLoaderService.getLoaders()loaders.entityLoader.load(id)See references/project-patterns.md for detailed DataLoader patterns.