webiny-admin-graphql-client-catalog

Catalogs the GraphQLClient abstraction for Webiny admin GraphQL operations.

8.0k|673|Updated Jan 9, 2018
One-click install
npx skills add https://github.com/webiny/webiny-js --skill webiny-admin-graphql-client-catalog
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: webiny-admin-graphql-client-catalog
Source: https://github.com/webiny/webiny-js/tree/main/skills/user-skills/generated/admin/graphql-client
Command: npx skills add https://github.com/webiny/webiny-js --skill webiny-admin-graphql-client-catalog

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers working in the Webiny admin app need to locate the correct GraphQL client abstraction and its exact import path without searching the entire codebase.

Core Features & Use Cases

  • Abstraction Catalog: Lists the GraphQLClient abstraction with its import statement and source file location.
  • Source Reference: Points to @webiny/app/features/graphqlClient/abstractions.ts so you can read exact interfaces and types before use.
  • Use Case: When building a Webiny admin extension that must query the GraphQL API, look up GraphQLClient here, read its source for the exact type signature, and import it from webiny/admin/graphql-client.

Quick Start

Ask the assistant to show the GraphQLClient abstraction from the Webiny admin graphql-client catalog and explain how to import it.

Frequently Asked Questions about webiny-admin-graphql-client-catalog

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

FAQPage Schema
How do I import the GraphQL client in a Webiny admin app?

Import GraphQLClient from webiny/admin/graphql-client using the statement: import { GraphQLClient } from "webiny/admin/graphql-client". Read the source file at @webiny/app/features/graphqlClient/abstractions.ts first to confirm the exact interface and types.

What abstractions does the Webiny admin graphql-client module provide?

The module provides one abstraction: GraphQLClient. Its definition lives in @webiny/app/features/graphqlClient/abstractions.ts, which contains the exact interface and type signatures you should review before use.

Where is the GraphQLClient source code in Webiny?

The GraphQLClient abstraction is defined in @webiny/app/features/graphqlClient/abstractions.ts within the webiny-js repository. Reading this file gives you the authoritative interface and type definitions.

Can I use GraphQLClient outside the Webiny admin app?

This catalog covers the admin-scoped import path webiny/admin/graphql-client, intended for Webiny admin extensions. Usage outside the admin context is not documented in this skill, so verify the module resolution in your project setup first.