AgeGroup
No description
type AgeGroup {
  group: String!
  span: String!
  start: Int!
  total(
    first: Int = 0
    offset: Int = 0
    orderBy: [_CurrentTotalOrdering] = []
    filter: _AgeGroupCurrentTotalFilter
  ): [_AgeGroupTotal]
  male(
    first: Int = 0
    offset: Int = 0
    orderBy: [_CurrentMaleOrdering] = []
    filter: _AgeGroupCurrentMaleFilter
  ): [_AgeGroupMale]
  female(
    first: Int = 0
    offset: Int = 0
    orderBy: [_CurrentFemaleOrdering] = []
    filter: _AgeGroupCurrentFemaleFilter
  ): [_AgeGroupFemale]
  _id: String
}
Fields
group (String!)
span (String!)
start (Int!)
total ([_AgeGroupTotal])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_CurrentTotalOrdering])
- 
filter(_AgeGroupCurrentTotalFilter)
male ([_AgeGroupMale])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_CurrentMaleOrdering])
- 
filter(_AgeGroupCurrentMaleFilter)
female ([_AgeGroupFemale])
- 
first(Int)
- 
offset(Int)
- 
orderBy([_CurrentFemaleOrdering])
- 
filter(_AgeGroupCurrentFemaleFilter)
_id (String)
Generated field for querying the Neo4j system id of this node.