Are there any plans to add image transform support to GraphQL queries? I come from a Craft background and they have support for doing this sort of this:
{
entries (section: "news", limit: 2, orderBy: "dateCreated DESC") {
dateCreated @formatDateTime (format: "Y-m-d")
title
children {
title
}
... on news_article_Entry {
shortDescription
featuredImage {
url @transform (width: 300, immediately: true)
}
}
}
}
We've hacked together a simple solution for now using the following code in AppServiceProvider:
Are there any plans to add image transform support to GraphQL queries? I come from a Craft background and they have support for doing this sort of this:
We've hacked together a simple solution for now using the following code in AppServiceProvider:
but first party support would be awesome!