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