Skip to content

Commit a2d78da

Browse files
committed
feat(graphql): add execute function for dataprotector and poco subgraphs
1 parent 9ff8278 commit a2d78da

File tree

6 files changed

+66
-8469
lines changed

6 files changed

+66
-8469
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ node_modules
1111
dist
1212
dist-ssr
1313
*.local
14-
src/graphql/*
15-
!src/graphql/execute.ts
14+
src/graphql/poco/*
15+
src/graphql/dataprotector/*
16+
!src/graphql/poco/execute.ts
17+
!src/graphql/dataprotector/execute.ts
1618

1719
# misc
1820
.DS_Store

codegenDataprotector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config: CodegenConfig = {
1414
documentMode: 'string'
1515
}
1616
},
17-
'./src/graphql/schemaDataProtector.graphql': {
17+
'./src/graphql/dataprotector/schema.graphql': {
1818
plugins: ['schema-ast'],
1919
config: {
2020
includeDirectives: true

codegenPoco.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const config: CodegenConfig = {
1414
documentMode: 'string'
1515
}
1616
},
17-
'./src/graphql/schemaPoco.graphql': {
17+
'./src/graphql/poco/schema.graphql': {
1818
plugins: ['schema-ast'],
1919
config: {
2020
includeDirectives: true

0 commit comments

Comments
 (0)