add filter expressions for Album and Artist schemas for ndc-postgres (#643)

## Description

I want to be able to use a `where` clause for Artists and Albums when
running v3-engine with the tests ndc-postgres schema.

V3_GIT_ORIGIN_REV_ID: 50824decb794f41f745268e7ca297a5a1c04c808
This commit is contained in:
Gil Mizrahi 2024-05-31 18:51:51 +03:00 committed by hasura-bot
parent 02ee05bed4
commit 6964b7cf3d

View File

@ -1957,6 +1957,33 @@
]
}
},
{
"kind": "ObjectBooleanExpressionType",
"version": "v1",
"definition": {
"name": "artist_bool_exp",
"objectType": "Artist",
"dataConnectorName": "db",
"dataConnectorObjectType": "Artist",
"comparableFields": [
{
"fieldName": "ArtistId",
"operators": {
"enableAll": true
}
},
{
"fieldName": "Name",
"operators": {
"enableAll": true
}
}
],
"graphql": {
"typeName": "ArtistBoolExp"
}
}
},
{
"kind": "ObjectBooleanExpressionType",
"version": "v1",
@ -2401,6 +2428,7 @@
}
],
"arguments": [],
"filterExpressionType": "album_bool_exp",
"graphql": {
"selectUniques": [
{
@ -2516,6 +2544,7 @@
}
],
"arguments": [],
"filterExpressionType": "artist_bool_exp",
"graphql": {
"selectUniques": [
{