You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notion endpoint https://www.notion.so/api/v3/search does not seem to be publicly documented.
I reversed engineer on Notion site by checking what might be considered as an invalid input. The culprit seems to be: "sort": "Relevance" versus
"sort": {
"field": "relevance"
},
The text was updated successfully, but these errors were encountered:
Discovered while working on transitive-bullshit/nextjs-notion-starter-kit#618
The line here https://github.com/NotionX/react-notion-x/blob/master/packages/notion-client/src/notion-api.ts#L606
makes the below request:
and gets:
Notion endpoint
https://www.notion.so/api/v3/search
does not seem to be publicly documented.I reversed engineer on Notion site by checking what might be considered as an invalid input. The culprit seems to be:
"sort": "Relevance"
versusThe text was updated successfully, but these errors were encountered: