Recursive data & components, later fetches throwing an error
问题 First off my graphql data model: type Human { id: !String, name: !String, children: [Human] } The only route (relay route config) I'm atm using: class extends Relay.Route { static queries = { human: () => Relay.QL`query RootQuery { viewer }` }; static routeName = 'AppHomeRoute'; } The list component: class HumanList extends Component { render() { let {children} = this.props.human; let subListsHTML = human ? children.map(child => ( <HumanListItem key={child.id} human={child}/> )) : ''; return