You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a custom content type with a Taxonomy Field and the TagsPart attached.
I want to query for content items that contain one of the terms in a given term list and are tagged with all the tags in a list.
Is it possible to write such a query with IContentQuery?
I think for this purpose I need to create a subquery on ContentTagRecord, but I can't find a way to combine these queries using ContentManager.Query.
Can someone write an example of such a query?
The text was updated successfully, but these errors were encountered:
@sebastienros Thank you for your reply.
The problem with using SQL queries is that the output of the query is not in the form of entities. In particular, in this case I need to work with content item data, its parts, ....
I have a custom content type with a
Taxonomy Field
and theTagsPart
attached.I want to query for content items that contain
one of
the terms in a giventerm list
and are tagged withall
thetags in a list
.Is it possible to write such a query with
IContentQuery
?I think for this purpose I need to create a
subquery
onContentTagRecord
, but I can't find a way to combine these queries usingContentManager.Query
.Can someone write an example of such a query?
The text was updated successfully, but these errors were encountered: