A GraphQL data provider for react-admin built with AWS Amplify and tailored to target a simple GraphQL implementation.
Install with:
npm install --save ra-data-aws-amplifyor
yarn add ra-data-aws-amplifyimport awsconfig from './aws-exports';
import * as queries from './graphql/queries.js'
import * as mutations from './graphql/mutations.js'
...
componentDidMount() {
    ...
    buildDataProvider({awsconfig, queries, mutations}) 
        .then(dataProvider => this.setState({ dataProvider }))
    ...
}
...Run the tests with this command:
make test