mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-04 15:28:07 +00:00
32 lines
808 B
GraphQL
32 lines
808 B
GraphQL
query listRecommendations($input: ListRecommendationsInput!) {
|
|
listRecommendations(input: $input) {
|
|
modules {
|
|
title
|
|
moduleId
|
|
renderType
|
|
content {
|
|
value
|
|
entity {
|
|
...entityPreview
|
|
}
|
|
params {
|
|
searchParams {
|
|
types
|
|
query
|
|
filters {
|
|
field
|
|
value
|
|
}
|
|
}
|
|
entityProfileParams {
|
|
urn
|
|
}
|
|
contentParams {
|
|
count
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|