Hey folks, how can I accomplish the same typings g...
# orm-help
l
Hey folks, how can I accomplish the same typings generation for my graphql layer? I have the following .graphqlconfig:
Copy code
projects:
  app:
    schemaPath: src/graphql/schema.graphql
    extensions:
      endpoints:
        dev: <http://localhost:3003/graphql>
      codegen:
        - generator: typegen
          language: typescript
          output:
            typings: typings.ts
  prisma:
    schemaPath: src/generated/prisma.graphql
    extensions:
      prisma: prisma.yml
      codegen:
        - generator: prisma-binding
          language: typescript
          output:
            binding: src/generated/prisma.ts
I’ve ended up using gql-gen and solved the problem.