graphql-sample

GraphQL with apollo server sample repository

Stars
0
Committers
1

graphql_sample

Graphql sample repository

🚀 Get started

Run apollo server.

pnpm i && pnpm start

Then, you can request the query for http://localhost:4000 with some tools like Apollo Sandbox.

Apllo Sandbox

Codegen

After running server, you can run below command to create schema type definition.

pnpm codegen

Then, the ./arc/generated/graphql.ts is generated.

Related Projects