We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f47c3a commit 6853b99Copy full SHA for 6853b99
1 file changed
src/schemas/manifest.zod.ts
@@ -62,10 +62,10 @@ export const ManifestSchema = z.object({
62
menus: z.array(MenuItemSchema).optional().describe('Navigation menu structure'),
63
64
/**
65
- * Glob patterns specifying ObjectQL schema files.
66
- * Example: ["./src/schema/*.gql", "./schema/ ** /*.graphql"]
+ * Glob patterns specifying ObjectQL schemas files.
+ * Example: `["./src/schemas/*.gql", "./src/schemas/**\/*.graphql"]`
67
*/
68
- entities: z.array(z.string()).optional().describe('Glob patterns for ObjectQL schema files'),
+ entities: z.array(z.string()).optional().describe('Glob patterns for ObjectQL schemas files'),
69
70
71
* Extension points contributed by this package.
0 commit comments