secure.user-info.acc.rechtsorde.awssdu.nl
Open in
urlscan Pro
54.220.106.80
Public Scan
URL:
https://secure.user-info.acc.rechtsorde.awssdu.nl/
Submission: On March 14 via automatic, source certstream-suspicious — Scanned from NL
Submission: On March 14 via automatic, source certstream-suspicious — Scanned from NL
Form analysis
0 forms found in the DOMText Content
This is an example of a GraphQL server written with Play framework and Sangria. It also serves as a playground. On the right hand side you can see a textual representation of the GraphQL schema which is implemented on the server and that you can query here. On the left hand side you can execute a GraphQL query and see the results of its execution. If you prefer, you can also use graphql-playground. GRAPHQL QUERY 1 2 3 4 5 6 7 8 query HeroAndFriends { hero { name friends { name } } } XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Vars Config Examples Full Playground EXAMPLES Hero and his friends names Use of fragments to query common human and droid fields Human by ID using variable Full introspection CONFIG VARIABLES XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ERRORS RESPONSE XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX SCHEMA × SHORTCUTS ? This Help Ctrl + Enter Execute v Variables c Config This is just a small demonstration. It really gets interesting when you start to play with the schema on the server side. Fortunately it's pretty easy to do. sangria-playground is available on the GitHub, and since it's a simple Play application, all it takes to start playground locally and start playing with the schema is this: $ git clone https://github.com/sangria-graphql/sangria-playground.git $ cd sangria-playground $ sbt run Now you are ready to point your browser to http://localhost:9000 to see the same page you are seeing here. The only prerequisites are SBT and Java 8.