Using Apollo to Fetch Data

Using Apollo to Fetch Data
import { HttpLink } from 'apollo-link-http'import { InMemoryCache } from 'apollo-cache-inmemory'// Replace this with your project's endpointconst GRAPHCMS_API = 'https://debbie-codes.herokuapp.com/v1/graphql'export default () => ({  link: new HttpLink({ uri: GRAPHCMS_API }),  cache: new InMemoryCache(),  defaultHttpLink: false})

We need to use the graphql-tag to be able to add our query so first we import this import gql from 'graphql-tag' We can then make our query listing all the data that we want to receive and ordering by what we prefer. Here we just added an export const called workshop and make it equal to our gql tag which has a query called workshops and that queries the workshops table.

export const workshops = gql`  query workshops {    workshops(order_by: { date: desc }) {      date      title      year    }  }`

Then we need to use apollo so that we can get our data to our template. Don't forget to first install '@nuxtjs/apollo', and then add to the modules of our next config.

apollo: {    $loadingKey: 'loading',    workshops: {      query: workshops,    },  },

And now we can do a v-for over all our data and print the title for example

<div v-for="(workshop, index) in workshops" :key="index" class="flex">  <p>{{workshop.title}}</p></div>