Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ropensci/graphql
Bindings to libgraphqlparser for R
https://github.com/ropensci/graphql
graphql libgraphql r r-package rstats
Last synced: 2 months ago
JSON representation
Bindings to libgraphqlparser for R
- Host: GitHub
- URL: https://github.com/ropensci/graphql
- Owner: ropensci
- License: other
- Created: 2016-09-15T17:32:03.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T17:50:38.000Z (3 months ago)
- Last Synced: 2024-09-09T21:58:21.570Z (3 months ago)
- Topics: graphql, libgraphql, r, r-package, rstats
- Language: C++
- Homepage: https://docs.ropensci.org/graphql
- Size: 393 KB
- Stars: 38
- Watchers: 8
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ropensci/graphql - Bindings to libgraphqlparser for R (C++)
README
# graphql
> Bindings to the 'libgraphqlparser' C++ library. Parses GraphQL syntax
and exports the AST in JSON format.[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/graphql)](https://cran.r-project.org/package=graphql)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/graphql)](https://cran.r-project.org/package=graphql)
[![Github Stars](https://img.shields.io/github/stars/ropensci/graphql.svg?style=social&label=Github)](https://github.com/ropensci/graphql)## Hello World
Simple example
```r
> graphql2json("schema { query: QueryType }", parse_schema = TRUE)
```
```
{"kind":"Document","loc":{"start": {"line": 1,"column":1}, "end": {"line":1,"column":28}},"definitions":[{"kind":"SchemaDefinition","loc":{"start": {"line": 1,"column":1}, "end": {"line":1,"column":28}},"directives":null,"operationTypes":[{"kind":"OperationTypeDefinition","loc":{"start": {"line": 1,"column":10}, "end": {"line":1,"column":26}},"operation":"query","type":{"kind":"NamedType","loc":{"start": {"line": 1,"column":17}, "end": {"line":1,"column":26}},"name":{"kind":"Name","loc":{"start": {"line": 1,"column":17}, "end": {"line":1,"column":26}},"value":"QueryType"}}}]}]}
```