Skip to content

Commit

Permalink
fix(fragments.graphql): values is a correct parameter for FacetFilter…
Browse files Browse the repository at this point in the history
…Input (#11485)

Co-authored-by: Bryazgin <[email protected]>
  • Loading branch information
bda618 and Bryazgin authored Sep 28, 2024
1 parent 0120ec2 commit 171aad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahub-web-react/src/graphql/fragments.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ fragment domainEntitiesFields on Domain {
entities(input: { start: 0, count: 0 }) {
total
}
dataProducts: entities(input: { start: 0, count: 0, filters: [{ field: "_entityType", value: "DATA_PRODUCT" }] }) {
dataProducts: entities(input: { start: 0, count: 0, filters: [{ field: "_entityType", values: "DATA_PRODUCT" }] }) {
total
}
children: relationships(input: { types: ["IsPartOf"], direction: INCOMING, start: 0, count: 0 }) {
Expand Down

0 comments on commit 171aad1

Please sign in to comment.