-
For example, in a classic article/blog site, we have tags related to articles.
And we have a tag page showing all the articles with this tag like this: https://getjerry.com/tag/driver-licenses In this page, I need to query the Is it possible to query articles with I think this is a common feature that other CMS like contentful supports. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Yes, this is possible! Right now, it's only possible in the REST API and Local APIs due to how complex the query types would get in GraphQL (lots of query possibilities) but in REST you can do:
I think in your case you probably have many tags, which is why I used But this should work great! |
Beta Was this translation helpful? Give feedback.
Yes, this is possible! Right now, it's only possible in the REST API and Local APIs due to how complex the query types would get in GraphQL (lots of query possibilities) but in REST you can do:
I think in your case you probably have many tags, which is why I used
in
rather thanequals
.But this should work great!