Skills Plugins MCP Prompt Model 博客 我的中心
内容创作 #data #writing

graphql-operations

Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments, (3) optimizing data fetching patterns, (4) setting up type generation or linting, (5) reviewing operations for efficiency.

DeepseekModel 官方收录技能 质量 优秀 · 78 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=apollographql-skills-skills-graphql-operations-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name graphql-operations description Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments, (3) optimizing data fetching patterns, (4) setting up type generation or linting, (5) reviewing operations for efficiency. license MIT compatibility Any GraphQL client (Apollo Client, urql, Relay, etc.) metadata {"author":"apollographql","version":"1.0.0"} allowed-tools Bash(npm:*) Bash(npx:*) Read Write Edit Glob Grep GraphQL Operations Guide This guide covers best practices for writing GraphQL operations (queries, mutations, subscriptions) as a client developer. Well-written operations are efficient, type-safe, and maintainable. Operation Basics Query Structure query GetUser ( $id : ID ! ) { user ( id : $id ) { id name email } } Mutation Structure mutation CreatePost ( $input : CreatePostInput ! ) { createPost ( input : $input ) { id title createdAt } } Subscription Structure subscription OnMessageReceived ( $channelId : ID ! ) { messageReceived ( channelId : $channelId ) { id content sender { id name } } } Quick Reference Operation Naming Pattern Example Query GetUser , ListPosts , SearchProducts Mutation CreateUser , UpdatePost , DeleteComment Subscription OnMessageReceived , OnUserStatusChanged Variable Syntax # Required variable query GetUser ( $id : ID ! ) { ... } # Optional variable with default query ListPosts ( $first : Int = 20 ) { ... } # Multiple variables query SearchPosts ( $query : String ! , $status : PostStatus, $first : Int = 10 ) { ... } Fragment Syntax # Define fragment fragment UserBasicInfo on User { id name avatarUrl } # Use fragment query GetUser ( $id : ID ! ) { user ( id : $id ) { ... UserBasicInfo email } } Directives query GetUser ( $id : ID ! , $includeEmail : Boolean ! ) { user ( id : $id ) { id name email @include ( if : $includeEmail ) } } query GetPosts ( $skipDrafts : Boolean ! ) { posts { id title draft @skip ( if : $skipDrafts ) } } Key Principles 1. Request Only What You Need # Good: Specific fields query GetUserName ( $id : ID ! ) { user ( id : $id ) { id name } } # Avoid: Over-fetching query GetUser ( $id : ID ! ) { user ( id : $id ) { id name email bio posts { id title content comments { id } } followers { id name } # ... many unused fields } } 2. Name All Operations # Good: Named operation query GetUserPosts ( $userId : ID ! ) { user ( id : $userId ) { posts { id title } } } # Avoid: Anonymous operation query { user ( id : "123" ) { posts { id title } } } 3. Use Variables, Not Inline Values # Good: Variables query GetUser ( $id : ID ! ) { user ( id : $id ) { id name } } # Avoid: Hardcoded values query { user ( id : "123" ) { id name } } 4. Colocate Fragments with Components // UserAvatar.tsx export const USER_AVATAR_FRAGMENT = gql` fragment UserAvatar on User { id name avatarUrl } ` ; function UserAvatar ( { user } ) { return < img src = {user.avatarUrl} alt = {user.name} /> ; } Reference Files Detailed documentation for specific topics: Queries - Query patterns and optimization Mutations - Mutation patterns and error handling Fragments - Fragment organization and reuse Variables - Variable usage and types Tooling - Code generation and linting Ground Rules ALWAYS name your operations (no anonymous queries/mutations) ALWAYS use variables for dynamic values ALWAYS request only the fields you need ALWAYS include id field for cacheable types NEVER hardcode values in operations NEVER duplicate field selections across files PREFER fragments for reusable field selections PREFER colocating fragments with components USE descriptive operation names that reflect purpose USE @include / @skip for conditional fields
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。