public Connection <Human> GetAllHumans(int?first = null, string after = null, int?last = null, string before = null) =>
 _data.GetAllHumans().AsCharacters(_data).Cast <Human>().ToConnection(x => x.Id, first, after, last, before);