dgraphql
dgraphql copied to clipboard
DgraphQL: Build a GraphQL service from a schema
Have you given up on this project?
Hello, I like how easy it is to get a working GraphQL backend-data service with this project. I'd like to test this on a small production project, but before I...
https://tour.dgraph.io/intro/3/ Facets and Aggregation https://docs.dgraph.io/query-language/#facets-and-aggregation mutation { ```go schema { name: string @index(exact, term) . age: int @index(int) . friend: uid @count . Reputation: int @index(int) } ``` If I...