NotionElixir.Database.query_all

You're seeing just the function query_all, go back to NotionElixir.Database module for more information.
Link to this function

query_all(database, data, opts)

View Source

Specs

query_all(database :: t(), data :: map(), opts :: NotionElixir.options()) ::
  NotionElixir.ListResponse.t()
query_all(
  database_id :: String.t(),
  data :: map(),
  opts :: NotionElixir.options()
) :: NotionElixir.ListResponse.t()

Perform a query against the passed database, returning a ListResponse from the API. Will only return all pages of results.

Options

  • :api_key - API key to use with the request.
  • :api_version - Version of the notion API
  • :base_url - API base url, defaults to "https://api.notion.com/v1"