This is a site that set up a basic graphql api, for a react app to consume.
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
}
}