KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
graphql-akka-http
★ 18
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
ARAE
:
tensorflow implementation of Adversarially Regularized Autoencoders (ARAE)
sercapnp
:
Capnp support for intellij
imad-app
:
Base repository for IMAD course application.
minetest-toolranks
:
Minetest tool ranks mod
WaveViewDemo
:
a demo about trigonometric function
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
graphql-akka-http
?
Download (.md)
## Example of GraphQL with Scala An example Scala [GraphQL](http://facebook.github.io/graphql/) server written with [akka-http](http://doc.akka.io/docs/akka-stream-and-http-experimental/current/scala/http/) and [sangria](https://github.com/sangria-graphql/sangria). ### Running the example ```bash sbt ~reStart ``` SBT will automatically compile and restart the server whenever the source code changes. After the server is started you can run queries interactively using [GraphiQL](https://github.com/graphql/graphiql) by opening [http://localhost:8080](http://localhost:8080) in a browser. ### Database Configuration This example uses an in-memory [H2](http://www.h2database.com/html/main.html) SQL database. The schema and example data will be re-created every time server starts. If you would like to change the database configuration or use a different database, then please update `src/main/resources/application.conf`. `master` branch has the newest version of code, but if you want to repeat and test what I did during presentation there are `state1` to `state5` branches for this purpose, additionally there are patch files that would help observe what changed during every stage