External Resources Web Crawlers
The following details the structure for data output needed from Cassandra web crawlers and spiders for scraping external providers of open educational resources.
External Resources
type ExternalResource {
id: ID! @id
title: String
description: String
resourceProvider: String
linkURL: String
logoURL: String
courseLogoURL: String
Series: [ExternalResource!]! @relation(name: "ResourceSeries")
categories: [Category!]! @relation(name: "ResourceCategory")
reviews: [Review!]! @relation(name: "ResourceReview")
comments: [Comment!]! @relation(name: "ResourceComment")
votes: [Vote!]! @relation(name: "ResourceVote")
}Last updated
Was this helpful?