https://github.com/maxd/graphql-dsl-example
🚲 How to use GraphQL DSL gem.
https://github.com/maxd/graphql-dsl-example
example graphql ruby
Last synced: 6 months ago
JSON representation
🚲 How to use GraphQL DSL gem.
- Host: GitHub
- URL: https://github.com/maxd/graphql-dsl-example
- Owner: maxd
- Created: 2021-10-08T06:51:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-03T19:02:13.000Z (about 4 years ago)
- Last Synced: 2025-10-04T15:43:49.694Z (6 months ago)
- Topics: example, graphql, ruby
- Language: Ruby
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GraphQL Client and Server example
This example shows how to use [GraphQL DSL](https://github.com/maxd/graphql-dsl) gem.
# How to run example?
1. Configure and run server with commands:
```bash
cd server
bundle config set --local path 'vendor/bundle'
bundle install
rails s -p 4000
```
2. Configure and run client with commands:
```bash
cd client
bundle config set --local path 'vendor/bundle'
bundle install
rails s
```
3. Open http://localhost:3000 URL in your browser.