query($id: ID!, $previousElement: ID!, $nextElement: ID!) { news(id: $id) { title path image(width:1600, height:800) image_caption content excerpt humanTime : created(format:"DD MMMM YYYY") datetime : created(format:"ddd MMM DD YYYY hh:mm:ss zZ") timeToRead tags { id title path } authors { id name image path } } previous: news(id: $previousElement) { title excerpt image(width:800) path timeToRead authors { id name image(width:64, height:64, fit:inside) path } } next: news(id: $nextElement) { title excerpt image(width:800) path timeToRead authors { id name image(width:64, height:64, fit:inside) path } } }