Sorting
Results from your query can be sorted by using the orderBy argument.
query {
videos(orderBy: [title_ASC]) {
id
title
}
}query {
videos(orderBy: [title_ASC, publishedOn_DESC]) {
id
title
publishedOn
}
}Last updated