We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f06fbb3 commit 2a1cf6fCopy full SHA for 2a1cf6f
2 files changed
hasura/metadata/databases/default/tables/public_v_pool_maps.yaml
@@ -27,6 +27,7 @@ select_permissions:
27
columns:
28
- active_pool
29
- id
30
+ - label
31
- name
32
- patch
33
- poster
hasura/views/v_pool_maps.sql
@@ -1,8 +1,10 @@
1
+DROP VIEW IF EXISTS public.v_pool_maps;
2
CREATE OR REPLACE VIEW public.v_pool_maps AS
3
SELECT _map_pool.map_pool_id,
4
maps.id,
5
maps.name,
6
maps.type,
7
+ maps.label,
8
maps.poster,
9
maps.patch,
10
maps.active_pool,
0 commit comments