query($id: ID!, $previousElement: ID!, $nextElement: ID!) { blog(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: blog(id: $previousElement) { title excerpt image(width:800) path timeToRead humanTime : created(format:"DD MMMM YYYY") datetime : created(format:"ddd MMM DD YYYY hh:mm:ss zZ") authors { id name image(width:64, height:64, fit:inside) path } } next: blog(id: $nextElement) { title excerpt image(width:800) path timeToRead humanTime : created(format:"DD MMMM YYYY") datetime : created(format:"ddd MMM DD YYYY hh:mm:ss zZ") authors { id name image(width:64, height:64, fit:inside) path } } }