score:2

Accepted answer

you don't have return statement from the first #array.map callback:

this.props.data.allsongsjson.group.map(({ edges }) => {
  return edges.map(({ node }) => {
    return <p key={node.id}>hello world</p>;
  });
});

Related Query

More Query from same tag