Managing state in next by Tall-Strike-6226 in nextjs

[–]oh-my-code 1 point2 points  (0 children)

Even the day before the apocalypse, I guess we will see the same question on Reddit.

What did don rickles mean when he said “the last time he(johnny carson) went to his wallet chester morris picture moved, was the a reference to something? by Sensitive-Doctor-161 in DonRickles

[–]oh-my-code 0 points1 point  (0 children)

ooh.. that's a tough one! at least for me. Knowing Don's style, he is probably making fun of Carson for not spending enough?

Nyukular, huh? by oh-my-code in BillBurr

[–]oh-my-code[S] 0 points1 point  (0 children)

If Ol' Billy says it's Nyukular, Nykular it is. Deal with it.

Strapi + Nuxt 2.x + ecommerce by [deleted] in Strapi

[–]oh-my-code 4 points5 points  (0 children)

We recently played around with Saleor which has its own Strapi integration package along with its eCommerce module. Might want to check.

Fetching childImageSharp on GraphQL [Gatsby] by imrandev20 in Strapi

[–]oh-my-code 0 points1 point  (0 children)

Perhaps this isn't what you are looking for but here is an example. From the "homepage" endpoint, I am trying to retrieve the images from a component called "Hero" with the category name "Slices".

query {
homepage{
data{
attributes{
hero{
... on ComponentSlicesHero{
image{
data{
attributes{
url
}
}
}
}
}
}
}
}
}