Answers for "graphql drupal get paragraphs"

0

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
            }
          }
        }
      }
    }
  }
}
Posted by: Guest on February-20-2020

Browse Popular Code Answers by Language