-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
109 changed files
with
6,654 additions
and
4,678 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { GlobalSchema } from "@snowtop/ent/schema/"; | ||
|
||
const glo: GlobalSchema = { | ||
edges: [ | ||
{ | ||
// TODO what's the best API to edit this to add/remove edges | ||
// can add a new "Action" API just to get this | ||
// Not Action or Builder though so just something that returns Changeset(s) | ||
name: "loginAuth", | ||
schemaName: "User", | ||
}, | ||
], | ||
}; | ||
export default glo; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...le/src/schema/versions/cca3dbdf4c48_20227286718_add_global_login_auth_edges_table_add_.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
globalSchemaPath: global_schema.ts | ||
codegen: | ||
disableBase64Encoding: true | ||
generateRootResolvers: true | ||
defaultGraphQLMutationName: VerbNoun | ||
defaultGraphQLFieldFormat: snake_case | ||
fieldPrivacyEvaluated: at_ent_load | ||
customAssocEdgePath: | ||
path: 'src/ent/edge/custom_edge.ts' | ||
name: 'CustomTodoEdge' | ||
|
Oops, something went wrong.