# todomvc-relay-java **Repository Path**: mirrors_graphql-java/todomvc-relay-java ## Basic Information - **Project Name**: todomvc-relay-java - **Description**: Relay TodoMVC with Java Backend - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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