Open terion-name opened 6 years ago
Did you already have existing settings in your .graphqlconfig file?
@kbrandwijk .graphqlconfig contents:
projects:
app:
schemaPath: "src/schema.graphql"
includes: ["queries/{booking,queries}.graphql"]
extensions:
endpoints:
default: "http://localhost:4000"
database:
schemaPath: "src/generated/prisma.graphql"
includes: ["database/seed.graphql"]
extensions:
prisma: database/prisma.yml
prepare-binding:
output: src/generated/prisma.ts
generator: prisma-ts
But here I run cli manually for a different src and different output, set explicitly in arguments, they should have higher priority over config. Moreover, src and output are described only for one of the projects, described in config, and in cli call I don't reference it. If the config is used, than what is the logic, why it takes second project's configuration?