scalar JSONObject

type Query {
  healthCheck: Boolean
  notionPageById(id: ID!): NotionPage
}

union NotionPageChild = NotionBlock | NotionPage

type NotionBlock {
  id: ID!
  content: JSONObject!
  blocks: [NotionBlock!]!
}

type NotionPage {
  id: ID!
  content: JSONObject!
  blocks: [NotionPageChild!]!
}
