-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
24 changed files
with
1,111 additions
and
229 deletions.
There are no files selected for viewing
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
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,4 +1,6 @@ | ||
spark_locals_without_parens = [ | ||
action: 2, | ||
action: 3, | ||
allow_nil?: 1, | ||
argument_names: 1, | ||
as_mutation?: 1, | ||
|
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,37 @@ | ||
# DSL: AshGraphql.Api | ||
|
||
The entrypoint for adding graphql behavior to an Ash API | ||
|
||
|
||
## graphql | ||
Global configuration for graphql | ||
|
||
|
||
|
||
|
||
### Examples | ||
``` | ||
graphql do | ||
authorize? false # To skip authorization for this API | ||
end | ||
|
||
``` | ||
|
||
|
||
|
||
|
||
### Options | ||
| Name | Type | Default | Docs | | ||
| --- | --- | --- | --- | | ||
| `authorize?` | `boolean` | true | Whether or not to perform authorization for this API | | ||
| `tracer` | `atom` | | A tracer to use to trace execution in the graphql. Will use `config :ash, :tracer` if it is set. | | ||
| `root_level_errors?` | `boolean` | false | By default, mutation errors are shown in their result object's errors key, but this setting places those errors in the top level errors list | | ||
| `error_handler` | `mfa` | {AshGraphql.DefaultErrorHandler, :handle_error, []} | Set an MFA to intercept/handle any errors that are generated. | | ||
| `show_raised_errors?` | `boolean` | false | For security purposes, if an error is *raised* then Ash simply shows a generic error. If you want to show those errors, set this to true. | | ||
| `debug?` | `boolean` | false | Whether or not to log (extremely verbose) debug information | | ||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.