{{ data.heroText || $title || 'Hello' }}
{{ data.tagline || $description || 'Welcome to your VuePress site' }}
{{ feature.title }}
{{ feature.details }}
Try the demo
# download super graph source git clone https://github.com/dosco/super-graph.git # setup the demo rails app & database and run it ./demo start # signin to the demo app (user1@demo.com / 123456) open http://localhost:3000 # try the super graph web ui open http://localhost:8080
Try a query
# query to fetch users and their products
query {
users {
id
email
picture : avatar
products(limit: 2, where: { price: { gt: 10 } }) {
id
name
description
}
}
}
{{ data.footer }}