Hello all, i have been having this issue for awhile now since using Strapi. I like strapi but this is a headache. I can query all content like posts into a page fine. But attempting to query just a single post isn’t working.
query setup would be something like
query ($id: ID!) {
post (id: $id) {
name
excerpt
image {
url
}
}
}
My setup is:
Ubuntu 18.04 on Vultr.com
Nuxtjs on Frontend with Apollo
Strapi on backend with Graphql plugin.
I’m stuck and i’ve use the nuxt and strapi templates as a resource and their setup works for them but not for me.
Any assistance is greatly appreciated.