go-notion
go-notion copied to clipboard
Go client for the Notion API.
Update to let us filter by creation and update time
I thoroughly enjoy using your client, it makes a lot of sense when you get the hang of it. Unfortunately, I have been struggling with something that doesn't seem to...
First of all, thanks for the work you're putting into this! There are couple of places in the Go API where the type of a field is only known at...
Allows the following: ```go err := notion.Search(...) notionErr, ok := err.(*APIError) if ok && notionErr.Code == "rate_limited" { // retry } ``` Please don't forget to create a new release...
Hey, it seems impossible to save or update pages in a database with empty values ("", nil, [], ...). Since empty values are omitted in json encoding, notion responds with...
In the CreatePage function, when data is entered in the People type of the Type database, due to excessive DatabasePageProperty->People User struct item body.properties.People.people[0].type should be not present, instead was...
Hi, great client! When trying to update a People column in a database page (row), it seems that the User object is not being marshalled to the proper JSON object...
add proper annotation to User object so that PATCH request will be unmarshalled properly fixes #54
Corrected documentation link for get block children method.
I have a Go program that adds information to Notion DB page. I am able to post information such as name, email to the DB. But, phone number is causing...