WIJ MAKEN IMPACT MET PIXELS
# install dependencies
$ yarn install # Or yarn install
# serve with hot reload at localhost:3000
$ yarn run dev
# build for production and launch server
$ yarn run build
$ yarn start
# generate static project
$ yarn run generate
- Create the new fields in ACF
- Run the file
apollo/queries/schema.gql
you can do this in a app called GraphiQL or if you have the VScode extention you'll get anExecute Query
in the file - Modify the response from
{"data": {"__schema": {...}, }, }
to{"__schema": {...}, }
, stip off thedata
and make it__schema
is on top of the file. Take a look atapollo/client-configs/schema.json
for an example - Next add the new fields to where you call the queries for this project that is
pagesBySlug.gql
anddienstenBySlug.gql
For detailed explanation on how things work, checkout the Nuxt.js docs.