Introduction

Good time of the day, friends!

Today I want to show you how to set up Apollo GraphQl in a Nuxt application, where nuxt will take care of both client side and server side. As a result, we will have a complete framework for developing a full-featured application.

I have prepared a ready-made example which you can pick up and feel in parallel with the reading. In it you can find server settings, client settings and some examples of Apollo usage.

The purpose of this article is to give brief instructions on how to quickly set up Apollo GraphQl in a Nuxt application.

I will be as brief as possible, strictly and to the point.

Let’s begin!

Image.

Installing packages

We will need the following list of packages:

Open the terminal and install the packages

Image.

Server configuration

In case you didn’t know, nuxt uses the express.js server to render pages. It is necessary to prepare html files beforehand, thus solving SEO problems. This is how SSR mode works in nuxt.

Image.

But nuxt server can be used not only for rendering html files, but also for its own purposes, for example, to create a simple API. That’s what we’ll do today.

Let’s start by creating a structure for the server.

In the root of the project, create a server folder in which we add the index.js file. This file will be the entry point for the server.

Let’s add this code to it

In the code above, we imported apollo-server-express, which allows us to work with Apollo GraphQL on the server. Be sure to add a CORS to protect against foreign domain queries. Let’s configure all this and return an instance to be run by the nuxt server.

Now, to tell nuxt which file to run as a server, go to the nuxt.config.js file and add the new configuration there

The serverMiddleware option allows us to register additional routes without having to use an external server. Simply put, this option is exactly what gives us the ability to connect to a nuxt server.

This completes the server setup.

Client configuration

1. Let’s start by setting up @nuxtjs/composition-api.

To do this, go to the nuxt.config.js file, which is located at the root of the project, find the modules: [] block and connect Nuxt Composition Api there

Thus, Composition Api will be available globally in all components.

2. Next we will configure @nuxtjs/apollo

The @nuxtjs/apollo plugin should also be added to modules: […]

After that, let’s add settings for it, where we specify a link to the API, caching settings, hedges and other stuff.

Create a new folder in the root of the project called graphql. It will store everything related to graphql.

In the same folder, create an index.js file, the entry point from which the @nuxtjs/apollo plugin will pull settings for itself.

Let’s add the following code to the file

The packages that are plugged in at the beginning of the file were installed with the @nuxtjs/apollo plugin.

Now you need to tell the location for the settings file you just created. This is also done there in nuxt.config.js.

The settings can be specified anywhere in the file, but I usually specify them at the very end.

In the file ./graphql/index.js you might have noticed the env variable nuxtApiUrl, which we cast to set the API link. Let’s add it.

Open nuxt.config.js again, scroll to the bottom and add a new variable there in the env block.

This concludes the basic setup of @nuxtjs/apollo.

3. Next, configure @vue/apollo-composable

This package will be embedded in Nuxt as a plugin, so create a plugins folder in the root with the apollo-client.js file.

In the apollo-client.js file, import @vue/apollo-composable, which will connect to @nuxtjs/apollo.

Let’s install the plugin in the nuxt settings.

And the last step is to import the plugin into thebuildblock, so that it is available to all scripts. This is done in the same file nuxt.config.js

This completes the client setup.

How to use ArolloClient on a client

Now a few words about how to use Apollo on the client.

Important: all requests to the server through AroloClient should be made on pages, in the folder ./pages. This will allow you to makeasynchronous requests on the nuxt-serverside and render pages with already prepared data. Asynchronous requests do not work in components.

So, to use the @vue/apollo-composable plugin, you have to import it. Then just pull out the necessary methods as in the example below

I will not tell you how to work with this library, today is not about that. But I will leave a link to the documentation, of course https://v4.apollo.vuejs.org/guide-composable/query.html#graphql-document

The only thing I couldn’t find in the documentation is how to useLazyQuery method. It’s designed for queries that need to be executed by click or any other event.

After digging in the code, it turns out that the method useLazyQuery returns an additional function load, which should be used to make a request in the right place.

Conclusion

That’s about it. We have successfully configured everything we wanted, now all that’s left is the programming and layout. How to use what we’ve got is a topic for another article.

I hope you will find this tutorial useful and save your valuable time. Also, don’t forget to poke around in the finished project to get a better grasp of the material.

Thank you.

How to Configure SSG and SSR on Nuxt.

How to Configure SSG and SSR on Nuxt

When I started learning Vue, I was pleasantly surprised by this framework. It turned out to be very simple and easy to learn. Its API had enough...

Strapi - Things to Keep in Mind Before Migrating to This CMS

Strapi: Things to Keep in Mind Before Migrating to This CMS

When it comes to CMS, the modern market has already stepped so much that the choice is becoming increasingly difficult. There are so many options for...

Svelte vs React

Svelte vs. React: Which to Choose for Your Project?

JavaScript frameworks have revolutionized the landscape of web development and equipped developers with powerful tools and standardized methodologies...