Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ropensci/ghql
GraphQL R client
https://github.com/ropensci/ghql
graphql graphql-api graphql-client r r-package rstats
Last synced: 2 months ago
JSON representation
GraphQL R client
- Host: GitHub
- URL: https://github.com/ropensci/ghql
- Owner: ropensci
- License: other
- Created: 2016-09-15T20:27:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T09:08:34.000Z (almost 2 years ago)
- Last Synced: 2024-09-28T21:21:56.908Z (2 months ago)
- Topics: graphql, graphql-api, graphql-client, r, r-package, rstats
- Language: R
- Homepage: https://docs.ropensci.org/ghql
- Size: 145 KB
- Stars: 146
- Watchers: 12
- Forks: 13
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ropensci/ghql - GraphQL R client (R)
README
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 -
Examples of GraphQL APIs:
* GitHub:
* Opentargets:
* Countries GraphQL API: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
## 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