articles
Returns a paginated list of Article objects from the shop's Blog objects. Each article is a blog post containing content, author information, tags, and optional images.
Use the query argument to filter results by author, blog title, tags, or date fields. Sort results using the argument and reverse them with the reverse argument.
ArticleConnection arguments
- after (String)
- before (String)
- first (Int)
- last (Int)
- query (String)
- reverse (Boolean)
- sortKey (ArticleSortKeys)
- Anchor to afterafter•String
Returns the elements that come after the specified cursor.
- Anchor to beforebefore•String
Returns the elements that come before the specified cursor.
- Anchor to firstfirst•Int
Returns up to the first
nelements from the list.- Anchor to lastlast•Int
Returns up to the last
nelements from the list.- Anchor to queryquery•String
Apply one or multiple filters to the query. Refer to the detailed search syntax for more information about using filters.
- Anchor to reversereverse•BooleanDefault:false
Reverse the order of the underlying list.
- Anchor to sortKeysort•Article
Key Sort Keys Default:ID Sort the underlying list by the given key.
Anchor to Possible returnsPossible returns
- edges ([ArticleEdge!]!)
- nodes ([Article!]!)
- pageInfo (PageInfo!)
- Anchor to edgesedges•[Article
Edge!]! non-null A list of edges.
- Anchor to nodesnodes•[Article!]!non-null
A list of the nodes contained in ArticleEdge.
- Anchor to pageInfopage•Page
Info Info! non-null Information to aid in pagination.