ENUM

BlogSortType

link GraphQL Schema definition

1enum BlogSortType {
2
3# Returns the blog posts sorted by publish date in ascending order
4PUBLISH_DATE_ASC
5
6# Returns the blog posts sorted by publish date in descending order
7PUBLISH_DATE_DESC
8}

link Required by