this repo has no description
1opam-version: "2.0" 2maintainer: "Andreas Garnaes <andreas.garnaes@gmail.com>" 3authors: "Andreas Garnaes <andreas.garnaes@gmail.com>" 4homepage: "https://github.com/andreas/ocaml-graphql-server" 5doc: "https://andreas.github.io/ocaml-graphql-server/" 6bug-reports: "https://github.com/andreas/ocaml-graphql-server/issues" 7dev-repo: "git+https://github.com/andreas/ocaml-graphql-server.git" 8build: [ 9 ["jbuilder" "build" "-p" name "-j" jobs] 10 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 11] 12depends: [ 13 "ocaml" {>= "4.03.0"} 14 "jbuilder" {>= "1.0+beta7"} 15 "angstrom" {>= "0.7.0" & < "0.14.0"} 16 "sexplib" 17 "ppx_sexp_conv" {>= "v0.9.0"} 18 "alcotest" {with-test} 19 "ocaml-migrate-parsetree" {< "2.0.0"} 20] 21synopsis: "Servers in OCaml" 22description: """ 23![Build Status](https://travis-ci.org/andreas/ocaml-graphql-server.svg?branch=master) 24 25This repo contains a library for creating GraphQL servers in OCaml. Note that the API is still under active development. 26 27Current feature set: 28 29- [x] Type-safe schema design 30- [x] GraphQL parser in pure OCaml using [angstrom](https://github.com/inhabitedtype/angstrom) (April 2016 RFC draft) 31- [x] Query execution 32- [x] Introspection of schemas 33- [x] Arguments for fields 34- [x] Allows variables in queries 35- [x] Lwt support 36- [x] Async support 37- [x] Example with HTTP server and GraphiQL 38 39![GraphiQL Example](https://cloud.githubusercontent.com/assets/2518/22173954/8d1e5bbe-dfd1-11e6-9a7e-4f93d0ce2e24.png)""" 40url { 41 src: 42 "https://github.com/andreas/ocaml-graphql-server/releases/download/0.5.0/graphql-0.5.0.tbz" 43 checksum: [ 44 "sha256=f35388561532ce78be4b157f6831f7bf94bcedfc5519b968226dc3d171fb3a19" 45 "md5=b1a640ec1ddc50812deabdced411e0fc" 46 ] 47}