forked from andreas/ocaml-graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql.opam
41 lines (34 loc) · 1.22 KB
/
graphql.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
opam-version: "2.0"
maintainer: "Andreas Garnaes <andreas.garnaes@gmail.com>"
authors: "Andreas Garnaes <andreas.garnaes@gmail.com>"
homepage: "https://github.com/andreas/ocaml-graphql-server"
doc: "https://andreas.github.io/ocaml-graphql-server/"
bug-reports: "https://github.com/andreas/ocaml-graphql-server/issues"
dev-repo: "git+https://github.com/andreas/ocaml-graphql-server.git"
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.1"}
"graphql_parser" {>= "0.9.0"}
"yojson" {>= "1.6.0"}
"rresult" {>= "0.3.0"}
"seq"
"alcotest" {with-test}
]
synopsis: "Build GraphQL schemas and execute queries against them"
description: """
`graphql` is a package for creating GraphQL servers. Current feature set includes:
- Type-safe schema design
- GraphQL parser in pure OCaml using [angstrom](https://github.com/inhabitedtype/angstrom) (April 2016 RFC draft)
- Query execution
- Introspection of schemas
- Arguments for fields
- Allows variables in queries
- Subscriptions
Supporting packages:
- Use `graphql-lwt` for Lwt support.
- Use `graphql-async` for Async support.
- Use `graphql-cohttp` to run a GraphQL server with `cohttp`."""