fix(fragments.graphql): values is a correct parameter for FacetFilterInput (#11485)

Co-authored-by: Bryazgin <dbryaz1@LAMU0MVW17THY2C.uhc.com>
This commit is contained in:
Dmitry Bryazgin 2024-09-28 15:15:45 -04:00 committed by GitHub
parent 0120ec2c19
commit 171aad1213
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 }) {