Author
No description
type Author {
  _hash_id: ID
  email: String
  first: String
  fist: String
  last: String
  middle: String
  suffix: String
  collections(
    first: Int = 0
    offset: Int = 0
    orderBy: [_AuthorCollectionOrdering] = []
    filter: _AuthorCollectionFilter
  ): [AuthorCollection]
  affiliation(
    first: Int = 0
    offset: Int = 0
    orderBy: [_AffiliationOrdering] = []
    filter: _AffiliationFilter
  ): [Affiliation]
  _id: String
}
Fields
_hash_id (ID)
email (String)
first (String)
fist (String)
last (String)
middle (String)
suffix (String)
collections ([AuthorCollection])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_AuthorCollectionOrdering])
- 
filter(_AuthorCollectionFilter)
affiliation ([Affiliation])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_AffiliationOrdering])
- 
filter(_AffiliationFilter)
_id (String)
Generated field for querying the Neo4j system id of this node.