graphql drupal get paragraphs
query{
nodeQuery(filter: {conditions:[{field:"title",value: ["artistname"], operator: EQUAL}]}){
count
entities {
...on NodeArtist{
nid
title
fieldAlbum {
entity{
... on ParagraphAlbum {
fieldName
fieldReleaseDate
}
}
}
}
}
}
}