Skip to content

Commit

Permalink
partner role: fix filter types
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Zaikin committed Nov 22, 2022
1 parent 13fd1d6 commit 045046e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/metadata/custom_hasura_config/1_partner_role.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
"filter": {
"_and": [
{ "contract": { "_eq": "X-Hasura-User-Id" } },
{ "token_id": { "_is_null": "false"} },
{ "token_id": { "_is_null": false} },
{ "status": { "_neq": 1 } },
{ "expired": { "_eq": "true" } }
{ "expired": { "_eq": true } }
]
},
"backend_only": false,
Expand Down

0 comments on commit 045046e

Please sign in to comment.