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.4.0" & < "0.7.0"} 16 "sexplib" 17 "ppx_sexp_conv" {>= "v0.9.0"} 18 "yojson" 19 "rresult" 20 "alcotest" {with-test} 21 "ocaml-migrate-parsetree" {< "2.0.0"} 22] 23synopsis: "Build GraphQL schemas and execute queries against them" 24description: """ 25`graphql` is a package for creating GraphQL servers. Current feature set includes: 26 27- Type-safe schema design 28- GraphQL parser in pure OCaml using [angstrom](https://github.com/inhabitedtype/angstrom) (April 2016 RFC draft) 29- Query execution 30- Introspection of schemas 31- Arguments for fields 32- Allows variables in queries 33 34Use `graphql-lwt` for Lwt support, or `graphql-async` for Async support.""" 35url { 36 src: 37 "https://github.com/andreas/ocaml-graphql-server/releases/download/0.1.0/graphql-0.1.0.tbz" 38 checksum: [ 39 "sha256=b36b7ccdfdadcc904ea2eb5b909ac6300fe2e6147ec6bd2fd7dfd26eb3a26160" 40 "md5=07da45cbc0ade2a2d0182b66a8029239" 41 ] 42}