Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8071171
add routes basic tests
Zetazzz Dec 25, 2025
f492717
fix graphql server schema test
Zetazzz Dec 27, 2025
35f38af
finished graphql server basic test
Zetazzz Dec 27, 2025
9032392
close cache
Zetazzz Dec 27, 2025
5ca14d3
Merge branch 'main' into test/graphql-server-tests
Zetazzz Dec 27, 2025
d5d14db
use correct test utils
Zetazzz Dec 28, 2025
90c21bd
fix drop db failure
Zetazzz Dec 29, 2025
85a8024
use pgpm modules for meta db schema
Zetazzz Dec 29, 2025
4449131
req pattern
Zetazzz Dec 29, 2025
3638c46
Merge branch 'main' into test/graphql-server-tests
Zetazzz Dec 29, 2025
6218840
update snaps for pgpm cli
Zetazzz Dec 29, 2025
ee6f95e
Merge branch 'main' into test/graphql-server-tests
Zetazzz Jan 2, 2026
88dcb7b
Merge branch 'main' into test/graphql-server-tests
Zetazzz Jan 3, 2026
c0f7b8e
update graphql server README
Zetazzz Jan 4, 2026
9df1db6
domain test for graphql server
Zetazzz Jan 4, 2026
56daecc
add headers tests
Zetazzz Jan 4, 2026
9483c02
auth graphql server test
Zetazzz Jan 4, 2026
1f14472
graphql server tests
Zetazzz Jan 4, 2026
a9e4c9a
add graphql server tests
Zetazzz Jan 4, 2026
47d7ff7
fixtures for graphql server tests
Zetazzz Jan 5, 2026
9391a2c
postgis tests to graphql server
Zetazzz Jan 5, 2026
246ca01
handle renaming schema and tables to server tests
Zetazzz Jan 5, 2026
5e0ae8d
Merge branch 'main' into test/graphql-server-tests
Zetazzz Jan 5, 2026
efd863d
Merge branch 'main' into test/graphql-server-tests
Zetazzz Jan 5, 2026
6a66a93
Merge branch 'main' into test/graphql-server-tests
Zetazzz Jan 6, 2026
bd62172
add real world role permission to server test
Zetazzz Jan 6, 2026
fddcbdc
change back env readme
Zetazzz Jan 6, 2026
b46ab58
remove config_meta from graphql env test
Zetazzz Jan 6, 2026
6f60d7a
apply auth bearer
Zetazzz Jan 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion graphql/env/__tests__/__snapshots__/merge.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ exports[`getEnvOptions merges pgpm defaults, graphql defaults, config, env, and
],
"isPublic": true,
"metaSchemas": [
"config_meta",
"services_public",
"metaschema_public",
"metaschema_modules_public",
Expand Down
6 changes: 2 additions & 4 deletions graphql/env/__tests__/merge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ describe('getEnvOptions', () => {
},
api: {
enableMetaApi: false,
isPublic: false,
metaSchemas: ['config_meta']
isPublic: false
}
});

Expand Down Expand Up @@ -92,7 +91,7 @@ describe('getEnvOptions', () => {
},
api: {
exposedSchemas: ['public', 'shared'],
metaSchemas: ['metaschema_public', 'services_public', 'config_meta']
metaSchemas: ['metaschema_public', 'services_public', 'metaschema_modules_public', 'metaschema_public']
}
});

Expand Down Expand Up @@ -131,7 +130,6 @@ describe('getEnvOptions', () => {
expect(result.api?.metaSchemas).toEqual([
'metaschema_public',
'services_public',
'config_meta',
'metaschema_modules_public',
'env_meta',
'override_meta'
Expand Down
Loading