Graphql query returns less data for stardog-tutorial-music

I have tried to follow this tutorial and at 4min 11 seconds of this video the following query is executed:

{
    Album {
        album: name
        date
        artist {
            name
        }
    }
}

In the video there are over 1k results but in Studio I get just one back:

{
  "data": [
    {
      "album": "Please Please Me",
      "date": "1963-03-22",
      "artist": {
        "name": "The Beatles"
      }
    }
  ]
}
  • Why is that?

Thanks,
Radu