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])

authors ([_AuthorCollectionAuthors])

_id (String)

Generated field for querying the Neo4j system id of this node.