An open API service indexing awesome lists of open source software.

https://github.com/fluree/fql-graphql

Conversion utility from graphql to FlureeQL
https://github.com/fluree/fql-graphql

Last synced: 5 months ago
JSON representation

Conversion utility from graphql to FlureeQL

Awesome Lists containing this project

README

          

# Fluree

## Conversion utility for graphql to FlureeQL

###Usage:

```js
import gql from fql-graphql;

const userQuery = gql`
query ($username: String!) {
_user (ident: ["username", $username]) {
username
person {
nameGiven
nameFamily
}
}
}
`;
```