mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 11:29:59 +00:00
23 lines
435 B
GraphQL
23 lines
435 B
GraphQL
query listPosts($input: ListPostsInput!) {
|
|
listPosts(input: $input) {
|
|
start
|
|
count
|
|
total
|
|
posts {
|
|
urn
|
|
type
|
|
postType
|
|
content {
|
|
contentType
|
|
title
|
|
description
|
|
link
|
|
media {
|
|
type
|
|
location
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|