fql-graphql
v2.0.0
Published
Conversion utility from graphql to FlureeQL
Downloads
5
Readme
Fluree
Conversion utility for graphql to FlureeQL
###Usage:
import gql from fql-graphql;
const userQuery = gql`
query ($username: String!) {
_user (ident: ["username", $username]) {
username
person {
nameGiven
nameFamily
}
}
}
`;