OBJECT

SeedRootContext

The context root of a scraping seed tree

  • type SeedRootContext {
  • # The root seed
  • root: Seed
  • # The unculled descendants of a given seed. If the seed does not exist, returns
  • # the empty array. If no seed is given, returns the descendants of the root.
  • #
  • # Arguments
  • # seedId: [Not documented]
  • descendants(seedId: UUID): [Seed!]!
  • # The unculled siblings of a given seed. If the seed does not exist, returns the
  • # empty array.
  • #
  • # Arguments
  • # seedId: [Not documented]
  • siblings(seedId: UUID): [Seed!]!
  • # The direct children of a given seed. If the seed does not exist, returns an
  • # empty array.
  • #
  • # Arguments
  • # seedId: [Not documented]
  • children(seedId: UUID): [Seed!]!
  • # All seeds, whether culled or unculled in the tree.
  • allSeeds: [Seed]!
  • }