https://github.com/graphql-java/todomvc-relay-java
Relay TodoMVC with Java Backend
https://github.com/graphql-java/todomvc-relay-java
graphql graphql-java todomvc
Last synced: 7 months ago
JSON representation
Relay TodoMVC with Java Backend
- Host: GitHub
- URL: https://github.com/graphql-java/todomvc-relay-java
- Owner: graphql-java
- Created: 2015-08-16T21:57:30.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-28T02:08:46.000Z (almost 8 years ago)
- Last Synced: 2025-04-19T17:14:35.980Z (7 months ago)
- Topics: graphql, graphql-java, todomvc
- Language: Java
- Homepage:
- Size: 160 KB
- Stars: 68
- Watchers: 5
- Forks: 25
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-graphql-java - todomvc-relay-java
README
# Relay TodoMVC with a Java Server
This is a port of the [Relay TodoMVC example](https://github.com/facebook/relay/tree/master/examples/todo)
where the GraphQL JavaScript server is replaced with a Java server based on [graphql-java](https://github.com/andimarek/graphql-java).
### Running
Starting the frontend:
```bash
cd app
npm install
npm start
```
Starting the backend: (running on port 8080)
```bash
./gradlew start
```
The app is now available at http://localhost:3000