Legacy Knowledge Base
Published Sep. 10, 2025

How to create GraphQL request to Filter Content Structures

Written By

Tamas Kovacs

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

Legacy Article

You are viewing an article from our legacy "FastTrack" publication program, made available for informational purposes. Articles in this program were published without a requirement for independent editing or verification and are provided"as is" without guarantee.

Before using any information from this article, independently verify its suitability for your situation and project.

Issue

  • When trying to filter Content Structure ( WebContent > Structures ), and using a wrong syntax, you might get any of the following errors:
  • Exception while fetching data (/contentStructureStructuredContents) : null
  • "Internal Server Error",classification": "DataFetchingException"
  • "contentStructureStructuredContents": null

Environment

  • Liferay DXP 7.4

Resolution

  • You should use the following template for the request:
    {
    contentStructureStructuredContents(contentStructureId: <yourContentStructureId>, filter: "contentFields/yourStructureFieldReference eq 'yourWebContentTextEntry'") {
    items {
    id
    contentFields {
    contentFieldValue {
    data
    }
    label
    }
    }
    }
    }
    You can find and edit the structure's field reference when clicking on the text field and opening the “Advanced” tab.

    Note: You should change the contentStructureId to your own.
Did this article resolve your issue ?

Legacy Knowledge Base