2021-10-31 15:12:49 +05:30
|
|
|
query GetPost($id: ID!) {
|
|
|
|
post(id: $id) {
|
|
|
|
title
|
|
|
|
createdAt
|
2021-11-02 21:04:02 +05:30
|
|
|
readingTime
|
2021-11-07 13:22:10 +05:30
|
|
|
uniqueSlug
|
2021-10-31 15:12:49 +05:30
|
|
|
creator {
|
|
|
|
name
|
|
|
|
id
|
2021-11-02 13:40:13 +05:30
|
|
|
imageId
|
2021-11-25 12:35:47 +05:30
|
|
|
username
|
2021-10-31 15:12:49 +05:30
|
|
|
}
|
2021-11-07 13:22:10 +05:30
|
|
|
previewImage {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
previewContent {
|
|
|
|
subtitle
|
|
|
|
}
|
2021-10-31 15:12:49 +05:30
|
|
|
content {
|
|
|
|
bodyModel {
|
|
|
|
paragraphs {
|
|
|
|
text
|
|
|
|
type
|
|
|
|
href
|
|
|
|
layout
|
|
|
|
markups {
|
|
|
|
title
|
|
|
|
type
|
|
|
|
href
|
|
|
|
userId
|
|
|
|
start
|
|
|
|
end
|
|
|
|
anchorType
|
|
|
|
}
|
|
|
|
iframe {
|
|
|
|
mediaResource {
|
|
|
|
href
|
|
|
|
iframeSrc
|
|
|
|
iframeWidth
|
|
|
|
iframeHeight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
metadata {
|
|
|
|
id
|
|
|
|
originalWidth
|
|
|
|
originalHeight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-25 12:35:47 +05:30
|
|
|
|
|
|
|
query GetPostLight($id: ID!) {
|
|
|
|
post(id: $id) {
|
|
|
|
uniqueSlug
|
|
|
|
creator {
|
|
|
|
username
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|