AuthorCollection
No description
type AuthorCollection {
  id: ID!
  papers(
    first: Int = 0
    offset: Int = 0
    orderBy: [_PaperOrdering] = []
    filter: _PaperFilter
  ): [Paper]
  authors(
    first: Int = 0
    offset: Int = 0
    orderBy: [_HasAuthorOrdering] = []
    filter: _AuthorCollectionHasAuthorFilter
  ): [_AuthorCollectionAuthors]
  _id: String
}
Fields
id (ID!)
papers ([Paper])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_PaperOrdering])
- 
filter(_PaperFilter)
authors ([_AuthorCollectionAuthors])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_HasAuthorOrdering])
- 
filter(_AuthorCollectionHasAuthorFilter)
_id (String)
Generated field for querying the Neo4j system id of this node.