OBJECT

Organization

A billing account on Noticeable that has collaborators, projects and publications.

link GraphQL Schema definition

  • type Organization {
  • # Self descriptive.
  • id: ID!
  • # A list of projects associated with the organization.
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • projects(after: String, before: String, first: Int, last: Int): ProjectConnection
  • }