https://github.com/yash-koshti/graphql_in_ror
This is a Blog app which has Users, Blogs and Comments. It is made using Ruby on Rails and Postgresql as database. This app has been made using the Graphql.
https://github.com/yash-koshti/graphql_in_ror
blogapp graphql postgresql rubyonrails
Last synced: about 2 months ago
JSON representation
This is a Blog app which has Users, Blogs and Comments. It is made using Ruby on Rails and Postgresql as database. This app has been made using the Graphql.
- Host: GitHub
- URL: https://github.com/yash-koshti/graphql_in_ror
- Owner: Yash-Koshti
- Created: 2024-04-30T12:43:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-24T06:55:51.000Z (11 months ago)
- Last Synced: 2025-04-07T11:20:22.200Z (about 2 months ago)
- Topics: blogapp, graphql, postgresql, rubyonrails
- Language: Ruby
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This is a Blog app which has Users, Blogs and Comments.
It is made using Ruby on Rails and Postgresql as database.
This app has been made using the Graphql.It has some seed to start with and also has CRUD operations avaiable on all its models.
It also has dynamic queries for Blog and Comment, such as
```
blogs{
id
title
content
user{
id
userName
}
}blogs(userId: 1){
id
title
content
user{
id
userName
}
}
```## Ruby version
- ruby-3.0.0
## System dependencies
1. Graphql ~> 2.3
## Configuration
- It has graphiql installed so you can test the graphql queries using /graphiql route.
## Database creation & initialization
```
rails db:create db:migrate db:seed
```