Statements | Branches | Functions | Lines |
---|---|---|---|
This is the official Quasar App-Extension for adding GraphQL to your Quasar project.
This app extension adds GraphQL support to your Quasar projects.
It uses Apollo Client and the Vue Apollo plugin.
Server side rendering (SSR) mode is also supported by this extension.
quasar ext add @m8a/apollo
Quasar CLI will retrieve the extension from NPM (@m8a/quasar-app-extension-apollo)
Note: Some code will be added to the html template file of your app (src/index.template.html
)
You will be prompted to enter the URI of your GraphQL endpoint. You can skip this and instead provide the URI using an environment variable when running Quasar:
GRAPHQL_URI=https://prod.example.com/graphql quasar build
GRAPHQL_URI=https://dev.example.com/graphql quasar dev
If you don't have a GraphQL endpoint yet, you can create one to experiment with at FakeQL or other similar services.
quasar ext remove @m8a/apollo
Note: The added code to the html template file (src/index.template.html
) will be removed.
Warning Added directory src/quasar-app-extension-apollo
will be removed, if you need, make a backup before uninstalling the extension.
Apollo client can be configured through src/quasar-app-extension-apollo/apollo-client-config.js
Check the guide in Vue Apollo docs
Example usage:
src/pages/Index.vue
<template>
<q-page>
<!-- when the query response is not received yet, data from it is undefined,
so before referring to it we need to use v-if -->
<div v-if="post">
GraphQL query result:<br>{{ post.title }}
</div>
<div v-else>
loading...
</div>
</q-page>
</template>
<script>
import gql from 'graphql-tag'
export default {
name: 'PageIndex',
// https://apollo.vuejs.org/guide/apollo/#usage-in-vue-components
apollo: {
post: {
query: gql`query {
post(id: 5) {
title
}
}`
}
}
}
</script>
- - Question user to use either Apollo Boost or the more advanced configuration
- - Make sure config is set up in an external file like
quasar.apollo.conf.js
or justapollo.conf.js
- - Ask the user, if QEnv or QDotenv should also be installed for special/ confidential data
- - Ask the user, if an Apollo Server should be created as a simple demo GraphQL backend
- - Ask the user, if an example app should be installed, which will also need the GraphQL demo backend
- - Ask the user, if other GraphQL backends should be installed (i.e. Prisma or Yoga)