@salesforce/webapp-template-feature-graphql-experimental 1.105.0 → 1.105.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
- package/skills/{graphql-data-access → implementing-graphql-data-access}/SKILL.md +1 -1
- /package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/explore-schema.md +0 -0
- /package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/generate-mutation-query.md +0 -0
- /package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/generate-read-query.md +0 -0
- /package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/shared-schema.graphqls +0 -0
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ All new apps built from `base-react-app` get GraphQL support out of the box.
|
|
|
31
31
|
|
|
32
32
|
This package includes a **skill** for AI agents to generate GraphQL data access code:
|
|
33
33
|
|
|
34
|
-
- **graphql-data-access**: End-to-end workflow from schema exploration → query generation → type generation → implementation
|
|
34
|
+
- **implementing-graphql-data-access**: End-to-end workflow from schema exploration → query generation → type generation → implementation
|
|
35
35
|
- Includes knowledge docs for schema exploration, read query generation, and mutation query generation
|
|
36
36
|
- Includes the shared Salesforce GraphQL schema definition (`shared-schema.graphqls`)
|
|
37
37
|
|
|
@@ -39,9 +39,9 @@ This package includes a **skill** for AI agents to generate GraphQL data access
|
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
41
|
# Copy skill to your coding agent's skills directory
|
|
42
|
-
cp -r skills/graphql-data-access ~/.cursor/skills/
|
|
42
|
+
cp -r skills/implementing-graphql-data-access ~/.cursor/skills/
|
|
43
43
|
# Or for Cline:
|
|
44
|
-
cp -r skills/graphql-data-access ~/.cline/skills/
|
|
44
|
+
cp -r skills/implementing-graphql-data-access ~/.cline/skills/
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
The skill references the base app's `npm run graphql:codegen` and `npm run graphql:schema` scripts — no additional setup needed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-feature-graphql-experimental",
|
|
3
|
-
"version": "1.105.
|
|
3
|
+
"version": "1.105.1",
|
|
4
4
|
"description": "GraphQL documentation, agent skills, and rules for Salesforce web applications",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"author": "",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: graphql-data-access
|
|
2
|
+
name: implementing-graphql-data-access
|
|
3
3
|
description: Add or modify Salesforce GraphQL data access code. Use when the user asks to fetch, query, or mutate Salesforce data, or add a GraphQL operation for an object like Account, Contact, or Opportunity.
|
|
4
4
|
---
|
|
5
5
|
|
/package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/explore-schema.md
RENAMED
|
File without changes
|
|
File without changes
|
/package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/generate-read-query.md
RENAMED
|
File without changes
|
/package/skills/{graphql-data-access → implementing-graphql-data-access}/docs/shared-schema.graphqls
RENAMED
|
File without changes
|