mariosimao / notion-sdk-php

A complete Notion SDK for PHP developers.
https://mariosimao.github.io/notion-sdk-php/
MIT License
140 stars 24 forks source link

How to read content in a tabpage #299

Closed giulo closed 8 months ago

giulo commented 9 months ago

Hi all, i need to read the contet of a specifc tabpage inside a view I post an image,i need to read the values in the colum "Referenza" inside
ORDINI page PREORDINI tab Can you help me to code this? Thanks immagine

giulo commented 9 months ago

I just used $query = Query::title("PREORDINI");

mariosimao commented 8 months ago

The Notion API does not support Database Views. Views, are basically parts of the database with columns and/or rows hidden.

To get the content of a database column, you could list the database pages.

If your view "PREORDINI" has a filter, you would need to replicate this filter while querying the database.