mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
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:
parent
02ee05bed4
commit
6964b7cf3d
@ -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": [
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user