Back-End API to use

Curriculum Vitae API

Back-End API published types

It is strongly recommended to use this package together with TypeScript.

npm: cv-graphql

Authorization

For most requests, the application will expect an Authorization header.

To include this header into your requests, you should use Apollo Client setContext Authentication.

Example how to set headers:

import { setContext } from '@apollo/client/link/context'

const authLink = setContext((_, { headers }) => {
  return {
    headers: {
      ...headers,
      Authorization: `Bearer ${access_token}`
    }
  }
})

You can get your user access_token from login or signup requests.

Error Handling

Use onError helper from Apollo Client Error Link to log errors and display notifications.

import { onError } from '@apollo/client/link/error'

const errorLink = onError(({ graphQLErrors, networkError }) => {
  if (graphQLErrors) {
    graphQLErrors.forEach(({ message }) => {
      console.error(message)
      if (message === 'Unauthorized') {
        authService.clearStorageAndLogout()
      }
    })
  }
  if (networkError) {
    console.error(networkError)
  }
})

Combining Links

It is important to combine links in a correct order. Read why Apollo Link overview.

import { ApolloClient, InMemoryCache, HttpLink, from } from '@apollo/client'
import { onError } from '@apollo/client/link/error'

const httpLink = new HttpLink({
  uri: process.env.GRAPHQL_API_URL
})

export const client = new ApolloClient({
  link: from([authLink, errorLink, httpLink]),
  cache: new InMemoryCache()
})

Apollo Client React Hooks

Be sure to use the following hooks for better experience: