OBJECT

Seed

Represents a unit of scraped content.

  • type Seed {
  • # A unique GUID that identifies this seed within a specific scrape context.
  • seedId: UUID!
  • # The scraped contents of this seed.
  • content: SeedContent!
  • # The source of the seed's contents, or where the content was scraped from. If
  • # this data was supplied manually, this is the string `__client`
  • source: String!
  • # The seedId of the seed's parent seed within a specific scrape context.
  • parentSeedId: UUID!
  • }