Sigurd Heggemsnes
Sigurd Heggemsnes
Also having this issue, seems to be working as intended in earlier versions (Tested 5.2.1) Edit: Unfortunately we need the loader functionality as well, so really need either old versions...
I am managing to work around this currently by doing this which is not really that good looking :) ```typescript import { SectionsType, sectionsFragment } from "./../../lib/queries/sections.query"; import { q...
As we've been using groqd more and more this shows up basically when the queries/types become very large. I'm pretty sure this probably isn't something groqd can fix directly, but...
No, we just created a custom query: ```typescript export const imageInnerQuery = { _ref: ["asset._ref", q.string().nullable()], caption: q.string().nullable(), alt: ["coalesce(alt, asset->altText)", q.string().nullable()], crop: q .object({ top: q.number(), bottom: q.number(), left:...
Hei @littlemilkstudio thanks for your input here. I'm mostly doing the `q.select()` see this example: ```typescript export const linksSelect = q.select({ "_type == 'externalLinkObject'": { _key: q.string(), _type: q.literal("externalLinkObject"), ...externalLinkQuery,...
Hey @littlemilkstudio thanks for taking the time here! I was not aware I could do `nullToUndefined` on a object level. Looks interesting! I was also not aware about nullish(). Sounds...
For us it works fine when publishing, but it would be great if they could be added when creating a new document as you don't always want to publish at...
Maybe we could plug into some initalValue? Not sure if it applies in this use case.
Yes Corey, you understood my rambling issue perfectly. No stress and apologize for the bad issue, was a late night problem 🙃
Hi again Corey, this latest fix kinda also breaks using the `style` prop in general on the loaded image. Perhaps we could introduce a `previewStyle` prop for styling the lqip...