---
title: Access any content 
layour: layout.html
---

# Access any content

As you have seen in [Pros&Cons analytics](/overview/supported-content.html#pros-cons), in order to access any content using GraphQL, you need to write a query that describes the data you want to access.

In order to access any content, we recommend to visit the GraphQL schema documentation for the [object User](/graphql-schema-docs/user.doc.html). The object User is the entrypoint of the graph, from which you can navigate any other accessible content.

As an example, from the object [User](/graphql-schema-docs/user.doc.html) you can go to:

- [User](/graphql-schema-docs/user.doc.html) --> [Product](/graphql-schema-docs/product.doc.html): to get the list of products accessible to a specific user
- [Product](/graphql-schema-docs/product.doc.html) --> [Review](/graphql-schema-docs/review.doc.html): to get the list of reviews of a specific product
- [Product](/graphql-schema-docs/product.doc.html) --> [QualitativeAnalysis](/graphql-schema-docs/qualitativeanalysis.doc.html): to get qualitative analysis data, like [ProsConsData](/graphql-schema-docs/prosconsdata.doc.html)
- and so on...






