Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 479 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 479 Bytes

Dinosaur graphql deployment

This is a site that set up a basic graphql api, for a react app to consume.

To access this endpoint

Deployed Link Locally

Tech

This uses express and apollo server. The backend is written with sequelize ORM with postgres.

Use queries and mutations to play around Sample Query

query GetDinos {
 allDinos {
   name
   type
   createdAt
   id
 }
}