graphql-engine/community/sample-apps/react-static-graphql
Sai Krishna Prasad Kandula d7a52b9342 readme: use cloud signup endpoint for "Deploy to Hasura" CTA
https://github.com/hasura/graphql-engine-mono/pull/2142

GitOrigin-RevId: 212d766978841d5609d726f8359586185f3cbb59
2021-08-19 07:03:05 +00:00
..
assets add github workflow to compress new images in PRs 2021-03-10 20:55:02 +00:00
public add react-static-graphql sample app (#1569) 2019-02-08 15:14:35 +05:30
src introduce v1/graphql (fix #1368) (#2064) 2019-05-10 11:35:10 +05:30
.babelrc add react-static-graphql sample app (#1569) 2019-02-08 15:14:35 +05:30
.eslintrc.js add react-static-graphql sample app (#1569) 2019-02-08 15:14:35 +05:30
.gitignore add react-static-graphql sample app (#1569) 2019-02-08 15:14:35 +05:30
package.json add react-static-graphql sample app (#1569) 2019-02-08 15:14:35 +05:30
README.md readme: use cloud signup endpoint for "Deploy to Hasura" CTA 2021-08-19 07:03:05 +00:00
static.config.js add react-static-graphql sample app (#1569) 2019-02-08 15:14:35 +05:30
yarn.lock Bump lodash.merge in /community/sample-apps/react-static-graphql (#2505) 2019-07-11 04:25:48 +00:00

react-static-graphql

A sample app to get started with react-static site generator, Hasura GraphQL engine and Postgres as database.

Edit react-static

Tutorial

  • Deploy GraphQL Engine on Hasura Cloud and setup PostgreSQL via Heroku:

    Deploy to Hasura Cloud

  • Get the Hasura app URL (say react-static.hasura.app)

  • Create author table:

    Open Hasura console: visit https://react-static.hasura.app on a browser
    Navigate to Data section in the top nav bar and create a table as follows:

    Create author table

  • Insert sample data into author table:

    Insert data into author table

    Verify if the row is inserted successfully

    Insert data into author table

  • Similarly, create an article table with the following data model: table: article columns: id, title, content, author_id (foreign key to author table's id) and created_at

    Create foreign key for author_id column to author's id

  • Now create a relationship from article table to author table by going to the Relationships tab.

  • Clone this repo:

    git clone https://github.com/hasura/graphql-engine
    cd graphql-engine/community/sample-apps/react-static-graphql
    
  • Install npm modules:

    yarn install
    
  • Open src/apollo.js and configure Hasura's GraphQL Endpoint as follows:

    
      import { ApolloClient } from 'apollo-client'
      import { HttpLink } from 'apollo-link-http'
      import { InMemoryCache } from 'apollo-cache-inmemory'
      import fetch from 'node-fetch'
    
      const client = new ApolloClient({
        link: new HttpLink({
          uri: 'https://react-static.hasura.app/v1/graphql',
          fetch
        }),
        cache: new InMemoryCache(),
      })
    
      export default client
    
    

Replace the uri argument with your Hasura GraphQL Endpoint.

  • We have defined the graphql query in src/graphql/queries/queries.js.

    • GraphQL query to fetch author information
    
    query {
      author {
        id
        name
      }
    }
    
    
    • GraphQL query to fetch articles written by author
    
    query($author: Int!) {
        article(where: {author_id: {_eq: $author}}) {
            id
            title
            content
            created_at
        }
    }
    
    
  • In pages/blog.js, we do the templating for listing all the authors and in containers/Post.js, we do the templating for listing all the articles written by a selected author.

  • Run the app:

    yarn start
    
  • Test the app Visit http://localhost:3000 to view the app

  • Bundle app

    yarn stage
    
  • Serve Production app

    yarn serve
    

For detailed explanation on how things work, checkout react-static docs.