<@U7RHQHUDQ> does this help? ``` # import * from ...
# orm-help
t
@Futurekam does this help?
Copy code
# import * from './generated/prisma.graphql';

type Mutation {
    createUser(data: UserCreateInput): User
...
f
Unfortunately not because prisma-client is not generating a prisma.graphql file its generating a prisma.ts file
Copy code
const server = new ApolloServer({
    typeDefs: gql(importSchema(path.resolve("src/schema.graphql"))),
  });
Thats what my constructor looks like. The problem being that there is no way to import my generated types into the schema.graphql b/c they're generated into a ts file
t
understood. Is there not a generated file anyway on the server side?
Copy code
endpoint: ${env:PRISMA_ENDPOINT}
datamodel: datamodel.graphql
# secret: ${env:PRISMA_SECRET}

hooks:
  post-deploy:
      - graphql get-schema -p prisma
This pulls my schema down after I
primsa deploy
but admittably I’m not using
prisma-client
I’m using
prisma-bindings