Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 440 Bytes

GRAPHQL.md

File metadata and controls

22 lines (13 loc) · 440 Bytes

GraphQL

Server

GraphQL Server Template

dotnet new -i HotChocolate.Templates.Server
dotnet new graphql -n MyApi

Client

Getting your GraphQL Schema for Relay

https://www.npmjs.com/package/get-graphql-schema
npm install -g get-graphql-schema

cd client
get-graphql-schema http://localhost:5702/graphql > schema/schema.graphql

Index

Back To Index