datahub/datahub-web-react/src/graphql/recommendations.graphql

32 lines
808 B
GraphQL
Raw Normal View History

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
}
}
}
}
}
}