#' Is the database output empty ?
#'
#' @param dataframe The database output
#'
#' @export
isEmptyNotionDatabaseExport <- function(dataframe){
isTRUE(nrow(dataframe) == 1 &
names(dataframe)[1] == "results" &
dataframe[1,1] == "none")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.