INTERFACE
ProjectOwner
Represents an owner of a Project.
link GraphQL Schema definition
- interface ProjectOwner {
- ID! :
- # Find project by number.
- #
- # Arguments
- # number: The project number to find.
- Int!): Project ( :
- # A list of projects under the owner.
- #
- # Arguments
- # first: Returns the first _n_ elements from the list.
- # after: Returns the elements in the list that come after the
- # specified global ID.
- # last: Returns the last _n_ elements from the list.
- # before: Returns the elements in the list that come before the
- # specified global ID.
- # orderBy: Ordering options for projects returned from the
- # connection
- # search: Query to search projects by, currently only searching
- # by name.
- # states: A list of states to filter the projects by.
- (
- Int, :
- String, :
- Int, :
- String, :
- ProjectOrder, :
- String, :
- ProjectState!] : [
- ): ProjectConnection!
- # The HTTP path listing owners projects
- URI! :
- # The HTTP url listing owners projects
- URI! :
- # Can the current viewer create new projects on this owner.
- Boolean! :
- }