query-graphql

Query named GraphQL operations against local API endpoints.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/flesler/dotfiles --skill query-graphql
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: query-graphql
Source: https://github.com/flesler/dotfiles/tree/main/home/.cursor/skills/query-graphql
Command: npx skills add https://github.com/flesler/dotfiles --skill query-graphql

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Streamlines querying a GraphQL API by providing structured guidance, sample queries, and best practices for local testing and exploration.

Core Features & Use Cases

  • Query named operations against a local GraphQL endpoint.
  • Inspect the schema and types to understand available fields.
  • Use curl or client libraries to validate responses in development workflows.

Quick Start

Run a local GraphQL query against your API endpoint to retrieve the desired data.

Frequently Asked Questions about query-graphql

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I query a local GraphQL API endpoint for testing?

To query a local GraphQL API endpoint, you can execute named operations against your running server using structured sample queries or curl-based fallbacks to validate responses during development.

What is the best way to inspect a GraphQL schema and types locally?

Inspecting a GraphQL schema and types locally involves exploring the available fields on your running server to understand the data structure before executing validation queries.

Can I use curl to test a GraphQL endpoint without a client library?

Yes, you can use curl to test a GraphQL endpoint without a client library by sending POST requests with structured queries, providing a fallback mechanism for validating responses in development.

Do I need a running GraphQL server to query a local schema?

Yes, you need a running GraphQL server or a local schema definition available to discover the endpoint and execute named queries for testing and exploration.

How does named query validation work for local GraphQL development?

Named query validation for local GraphQL development works by executing specific operations against your endpoint to retrieve desired data, ensuring the schema supports the requested fields.