I have the following query that queries my storyblok CMS:
{
allStoryblokEntry(filter: {field_component: {eq: "blog"}} ) {
edges {
node {
id
name
content
published_at
}
}
}
}
I'd like to sort my nodes however, say by published_at date.
I don't know how to do this though. GraphiQL suggests a sort parameter, which I somehow cannot get to work though. Storyblok tells me to use sort_by=name:asc - which my GraphiQL doesn't recognise at all, and which also gives me a syntax error. Has anyone done this before?