karthikvt26 / nextjs-postgres-graphql

Boilerplate to get started with Nextjs, Hasura GraphQL engine as CMS and postgres as database.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nextjs-postgres-graphql

Boilerplate to get started with Nextjs, Hasura GraphQL engine as CMS and postgres as database using this awesome library: withData.

Nextjs Postgres GraphQL

Tutorial

  • Deploy Postgres and GraphQL Engine on Heroku:

    Deploy to heroku

  • Get the Heroku app URL (say my-app.herokuapp.com)

  • Create author table:

    Open Hasura console: visit https://my-app.herokuapp.com 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

  • Clone this repo:

    git clone https://github.com/hasura/graphql-engine
    cd graphql-engine/community/boilerplates/nextjs-postgres-graphql
  • Install npm modules:

    npm install
  • Create config.js as follows, in this step we are configuring withData with an httpLink to connect to a valid GraphQL server URL.

    import { withData } from 'next-apollo'
    import { HttpLink } from 'apollo-link-http'
    
    // can also be a function that accepts a `context` object (SSR only) and returns a config
    const config = {
      link: new HttpLink({
        uri: 'https://my-app.herokuapp.com/v1alpha1/graphql', // <- Configure GraphQL Server URL (must be absolute)
      })
    }
    
    export default withData(config)
  • Wrap your page component with Query component from react-apollo so that appropriate data can be fetched while the page is SSRed

    • GraphQL query

      const query = gql`
      	query {
      	  author {
      	    id
      	    name
      	  }
      	}
      `
    • Wrap your component with Query

        <Query    // <- Wrap the component which requires data with Query component from react-apollo
          query={ query }
          fetchPolicy={ 'cache-and-network' }
        >
          {({ loading, data: { author:authors }}) => {
            return (
              <div>
                <AuthorList authors={authors} />
              </div>
            );
          }}
        </Query>
  • Run the app:

    npm run dev -- -p 8000
  • Test the app Visit http://localhost:8000 to view the app

    Demo app

How it works

It uses next-apollo underneath which ensures that data requirement is satisfied before it is rendered on the server and next.js takes care of the rest.

Contributing

Checkout the contributing guide for more details.

About

Boilerplate to get started with Nextjs, Hasura GraphQL engine as CMS and postgres as database.


Languages

Language:JavaScript 100.0%