StoryMetadata
StoryMetadata stores all the metadata that is scraped using the scraping tools inside Coral. Coral utilizes metascraper which uses a variety of filters derived from The Open Graph Protocol to scan for metadata on the page.
type StoryMetadata {
title: String
author: String
description: String
image: String
publishedAt: Time
modifiedAt: Time
section: String
}
Fields
StoryMetadata.title
● String
scalar
title stores the scraped title from the Story page.
StoryMetadata.author
● String
scalar
author stores the scraped author from the Story page.
StoryMetadata.description
● String
scalar
description stores the scraped description from the Story page.
StoryMetadata.image
● String
scalar
image stores the scraped image from the Story page.
StoryMetadata.publishedAt
● Time
scalar
publishedAt stores the scraped publication date from the Story page.
StoryMetadata.modifiedAt
● Time
scalar
modifiedAt stores the scraped modified date from the Story page.
StoryMetadata.section
● String
scalar
section stores the scraped section from the Story page.
Returned by
debugScrapeStoryMetadata
query
Member Of
Story
object