Skip to content

Commit 971b06d

Browse files
committed
finish moving graphql close to their processors
1 parent 65dd245 commit 971b06d

22 files changed

+2211
-2218
lines changed

db/migrations/1733977259808-Data.js renamed to db/migrations/1733979147598-Data.js

+929-929
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

graphql.config.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
projects:
22
separate:
3-
schema:
4-
- schema/**/*.graphql
5-
- src/**/*.graphql
3+
schema: src/**/*.graphql
64
include:
75
- types.graphql
86
combined:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "origin-squid",
33
"private": true,
44
"scripts": {
5-
"codegen": "echo '# GENERATED, DO NOT MODIFY\n' > schema.graphql && cat $(find schema src -name '*.graphql') >> schema.graphql && sqd codegen && git add src/model/generated/*",
5+
"codegen": "echo '# GENERATED, DO NOT MODIFY\n' > schema.graphql && cat $(find src -name '*.graphql') >> schema.graphql && sqd codegen && git add src/model/generated/*",
66
"migration:generate": "sqd down && sqd up && sqd migration:generate && git add db/migrations/*",
77
"generate": "npm-run-all codegen migration:generate",
88
"generate:validations": "ts-node scripts/generate-validations.ts",

0 commit comments

Comments
 (0)