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
- Host: GitHub
- URL: https://github.com/fluree/fql-graphql
- Owner: fluree
- License: epl-1.0
- Created: 2017-01-22T17:56:58.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T06:30:09.000Z (over 3 years ago)
- Last Synced: 2025-09-12T05:52:35.711Z (10 months ago)
- Language: JavaScript
- Size: 1.99 MB
- Stars: 2
- Watchers: 10
- Forks: 2
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
}
}
}
`;
```