-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathREADME.Rmd
65 lines (46 loc) · 1.98 KB
/
README.Rmd
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
ghql
====
```{r echo=FALSE}
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
warning = FALSE,
message = FALSE
)
```
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![cran checks](https://badges.cranchecks.info/worst/ghql.svg)](https://cran.r-project.org/web/checks/check_results_ghql.html)
[![R-check](https://github.com/ropensci/ghql/workflows/R-check/badge.svg)](https://github.com/ropensci/ghql/actions?query=workflow%3AR-check)
[![codecov.io](https://codecov.io/github/ropensci/ghql/coverage.svg?branch=master)](https://codecov.io/github/ropensci/ghql?branch=master)
[![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/ghql)](https://github.com/r-hub/cranlogs.app)
[![cran version](https://www.r-pkg.org/badges/version/ghql)](https://cran.r-project.org/package=ghql)
`ghql` - a GraphQL client for R
GraphQL - <https://graphql.org>
Examples of GraphQL APIs:
* GitHub: <https://docs.github.com/en/graphql/guides/introduction-to-graphql>
* Opentargets: <https://genetics-docs.opentargets.org/technical-pipeline/graphql-api>
* Countries GraphQL API: <https://github.com/trevorblades/countries>
Other GraphQL R packages:
* [graphql][] - GraphQL query parser
* [gqlr][] - GraphQL server and query methods
## Install
CRAN version
```{r eval=FALSE}
install.packages("ghql")
```
Development version
```{r eval=FALSE}
remotes::install_github("ropensci/ghql")
```
```{r}
library("ghql")
library("jsonlite")
library("dplyr")
```
## Package Documentation
<https://docs.ropensci.org/ghql/>
## Meta
* Please note that this package is released with a [Contributor Code of Conduct](https://ropensci.org/code-of-conduct/). By contributing to this project, you agree to abide by its terms.
[gqlr]: https://github.com/schloerke/gqlr
[graphql]: https://github.com/ropensci/graphql
[libgraphqlparser]: https://github.com/graphql/libgraphqlparser