We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e92f9 commit 82685adCopy full SHA for 82685ad
src/mcp/prompts/dataconnect/schema.ts
@@ -11,7 +11,9 @@ function renderServices(fdcServices: ServiceInfo[]) {
11
12
The following is the up-to-date content of existing schema files (their paths are relative to the Data Connect source directory).
13
14
-${mainSchema(fdcServices[0]).source.files?.map((f) => `\`\`\`graphql ${f.path}\n${f.content}\n\`\`\``).join("\n\n")}`;
+${mainSchema(fdcServices[0])
15
+ .source.files?.map((f) => `\`\`\`graphql ${f.path}\n${f.content}\n\`\`\``)
16
+ .join("\n\n")}`;
17
}
18
19
function renderErrors(errors?: string) {
0 commit comments