Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始めるgraphql
スター3
フォーク1
更新日2026年5月30日 01:17
Query language for APIs.
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Query language for APIs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Is it running?
Does this meet standards?
| name | graphql |
| description | Query language for APIs. |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
Query language for APIs.
query {
user(id: 1) {
name
email
posts {
title
}
}
}
mutation {
createUser(input: { name: "New" }) {
id
name
}
}
type User {
id: ID!
name: String!
email: String
}
type Query {
user(id: ID!): User
}
| Tool | Use |
|---|---|
| Apollo | Server/Client |
| GraphQL Yoga | Server |
| urql | Client |
Role: GraphQL Developer
Input: Query
Output: Data
Query.