diff --git a/documentation/dsls/DSL:-Ash.Api.cheatmd b/documentation/dsls/DSL:-Ash.Api.cheatmd deleted file mode 100644 index 1ed46c06f..000000000 --- a/documentation/dsls/DSL:-Ash.Api.cheatmd +++ /dev/null @@ -1,393 +0,0 @@ - -# DSL: Ash.Api.Dsl - -Apis are the entrypoints for working with your resources. - -Apis may optionally include a list of resources, in which case they can be -used as an `Ash.Registry` in various places. This is for backwards compatibility, -but if at all possible you should define an `Ash.Registry` if you are using an extension -that requires a list of resources. For example, most extensions look for two application -environment variables called `:ash_apis` and `:ash_registries` to find any potential registries - - -## api -General Api configuration - - - -### Examples -``` -api do - description """ - Resources related to the flux capacitor. - """ -end - -``` - - - - -### Options - -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the api. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - allow - - - - | -
- mfa
- |
- - - | -- Support a dynamic resource list by providing a callback that checks whether or not the resource should be allowed. - - | -|
- - - allow_unregistered? - - - - | -
- boolean
- |
-
- false
- |
- - Whether the Api will support only registered entries or not. - - | -|
- - - registry - - - - | -
- module
- |
- - - | -- Configure a registry that contains the resources. This option is generally not necessary anymore, and remains for backwards compatibility. Instead, configure resources in this block directly. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - resource - - - * - - | -
- module
- |
- - - | -- - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - timeout - - - - | -
- timeout
- |
-
- 30000
- |
- - The default timeout to use for requests using this API. See the [timeouts guide](/documentation/topics/timeouts.md) for more. - - | -|
- - - trace_name - - - - | -
- String.t
- |
- - - | -- The name to use in traces. Defaults to the last part of the module. See the [monitoring guide](/documentation/topics/monitoring.md) for more - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - require_actor? - - - - | -
- boolean
- |
-
- false
- |
- - Requires that an actor has been supplied. - | -|
- - - authorize - - - - | -
- :always | :by_default | :when_requested
- |
-
- :when_requested
- |
- - When to run authorization for a given request. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Sets the ets table protection to private, and scopes it to only this process. The table name will not be used directly if this is true, to allow multiple processes to use this resource separately. - | -|
- - - table - - - - | -
- atom
- |
- - - | -- The name of the table. Defaults to the resource name. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - table - - - - | -
- atom
- |
- - - | -- The table name to use, defaults to the name of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - api - - - - | -
- module
- |
- - - | -- An api to use by default when calling actions - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description of the flow - | -|
- - - trace_name - - - - | -
- String.t
- |
- - - | -- The name to use when creating traces. Defaults to the short name. - | -|
- - - short_name - - - - | -
- atom
- |
- - - | -- A short name to use for the flow. Defaults to the last to parts of the module name, underscored. - | -|
- - - returns - - - - | -
- `any`
- |
- - - | -- The step or step that should constitute the return value. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name to use for the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A default value to use for the argument if not provided - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. See the type's documentation for more information. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - over - - - - | -
- `any`
- |
- - - | -- The value to be iterated over. Will be available inside the `map` step as `element(:map_step_name)` - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - output - - - - | -
- atom
- |
- - - | -- Which step to use when constructing the output list. Defaults to the last step. - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - condition - - - - | -
- `any`
- |
- - - | -- A template that must evaluate to `true` for the branch to be executed. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - output - - - - | -
- atom
- |
- - - | -- Which step to use as the output. Defaults to the last step. - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - resource - - - - | -
- module | list(module)
- |
- - - | -- The Ash resource to use for the transaction. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - output - - - - | -
- `any`
- |
- - - | -- Which step or steps to use when constructing the output. Defaults to the last step. - | -|
- - - timeout - - - - | -
- timeout
- |
- - - | -- A timeout to apply to the transaction. - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - resource - - - * - - | -
- `any`
- |
- - - | -- The resource to call the action on. - | -|
- - - action - - - * - - | -
- `any`
- |
- - - | -- The action to call on the resource. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - upsert? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this action is always an upsert. - | -|
- - - upsert_identity - - - - | -
- atom
- |
- - - | -- The identity to use for the upsert. - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -|
- - - api - - - - | -
- `any`
- |
- - - | -- The api to use when calling the action. Defaults to the api set in the `flow` section. - | -|
- - - tenant - - - - | -
- `any`
- |
- - - | -- A tenant to use for the operation. May be a template or a literal value. - | -|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - resource - - - * - - | -
- `any`
- |
- - - | -- The resource to call the action on. - | -|
- - - action - - - * - - | -
- `any`
- |
- - - | -- The action to call on the resource. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - record - - - * - - | -
- `any`
- |
- - - | -- The record to be updated, can use template helpers, e.g `result(:step_name)`. - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -|
- - - api - - - - | -
- `any`
- |
- - - | -- The api to use when calling the action. Defaults to the api set in the `flow` section. - | -|
- - - tenant - - - - | -
- `any`
- |
- - - | -- A tenant to use for the operation. May be a template or a literal value. - | -|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - resource - - - * - - | -
- `any`
- |
- - - | -- The resource to call the action on. - | -|
- - - action - - - * - - | -
- `any`
- |
- - - | -- The action to call on the resource. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - record - - - * - - | -
- `any`
- |
- - - | -- The record to be updated, can use template helpers, e.g `result(:step_name)`. - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -|
- - - api - - - - | -
- `any`
- |
- - - | -- The api to use when calling the action. Defaults to the api set in the `flow` section. - | -|
- - - tenant - - - - | -
- `any`
- |
- - - | -- A tenant to use for the operation. May be a template or a literal value. - | -|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - resource - - - * - - | -
- `any`
- |
- - - | -- The resource to call the action on. - | -|
- - - action - - - * - - | -
- `any`
- |
- - - | -- The action to call on the resource. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - record - - - - | -
- `any`
- |
- - - | -- The record to be created/updated/destroyed. If the value is `nil` and would be required by the action type, the step is skipped and `nil` is the result of the step. - - | -|
- - - only_keys - - - - | -
- list(atom | list(atom))
- |
- - - | -- A list of keys or paths to keys that should be validated. Others will be ignored, and errors generated for other fields will be ignored. - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -|
- - - api - - - - | -
- `any`
- |
- - - | -- The api to use when calling the action. Defaults to the api set in the `flow` section. - | -|
- - - tenant - - - - | -
- `any`
- |
- - - | -- A tenant to use for the operation. May be a template or a literal value. - | -|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - resource - - - * - - | -
- `any`
- |
- - - | -- The resource to call the action on. - | -|
- - - action - - - * - - | -
- `any`
- |
- - - | -- The action to call on the resource. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - get? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not read action is expected to return a single result or `nil`. Set to `true` automatically if `get? true`. - - | -|
- - - not_found_error? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not finding no record should result in a not found error - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -|
- - - api - - - - | -
- `any`
- |
- - - | -- The api to use when calling the action. Defaults to the api set in the `flow` section. - | -|
- - - tenant - - - - | -
- `any`
- |
- - - | -- A tenant to use for the operation. May be a template or a literal value. - | -|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - flow - - - * - - | -
- atom
- |
- - - | -- The flow to run. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the step. Will be used when expressing dependencies, and step inputs. - | -|
- - - custom - - - - | -
- (any, any -> any) | module
- |
- - - | -- The module that implements the step behaviour. Also accepts a 2 argument function that takes the input and the context. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - input - - - - | -
- `any`
- |
- - - | -- A template for the input. - - | -|
- - - async? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this step can be run outside of the current process. - - | -|
- - - short_name - - - - | -
- String.t
- |
- - - | -- Set a short name for the step. Will be used when building things like mermaid charts. - | -|
- - - wait_for - - - - | -
- `any`
- |
- - - | -- Ensures that the step happens after the configured step or steps. This is a template who's results are not used, only awaited. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources touched by any custom logic in this step. This is used in the case that this step is run in a transaction. This is primarily only needed for `custom` steps. - - | -|
- - - halt_if - - - - | -
- `any`
- |
- - - | -- Halts the step by emitting an error (with an `Ash.Error.Flow.Halted`). Can use template variables. See the section on Halting for more. - - | -|
- - - halt_reason - - - - | -
- `any`
- |
-
- :halted
- |
- - Configures the reason for the `halt_if` clause. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the step. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - module - - - * - - | -
- atom
- |
- - - | -- The module to call `broadcast/3` on e.g module.broadcast(topic, event, message). - | -|
- - - prefix - - - - | -
- String.t
- |
- - - | -- A prefix for all pubsub messages, e.g `users`. A message with `created` would be published as `users:created` - | -|
- - - broadcast_type - - - - | -
- :notification | :phoenix_broadcast | :broadcast
- |
-
- :notification
- |
- - What shape the event payloads will be in. See - - | -|
- - - name - - - - | -
- atom
- |
- - - | -- A named pub sub to pass as the first argument to broadcast. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - action - - - * - - | -
- atom
- |
- - - | -- The name of the action that should be published - | -|
- - - topic - - - * - - | -
- `any`
- |
- - - | -- The topic to publish - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - event - - - - | -
- String.t
- |
- - - | -- The name of the event to publish. Defaults to the action name - | -|
- - - dispatcher - - - - | -
- atom
- |
- - - | -- The module to use as a dispatcher. If none is set, the pubsub module provided is used. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - type - - - - | -
- :create | :update | :destroy
- |
- - - | -- Publish on all actions of a given type - | -|
- - - topic - - - * - - | -
- `any`
- |
- - - | -- The topic to publish - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - action - - - - | -
- atom
- |
- - - | -- The name of the action that should be published - | -|
- - - event - - - - | -
- String.t
- |
- - - | -- The name of the event to publish. Defaults to the action name - | -|
- - - dispatcher - - - - | -
- atom
- |
- - - | -- The module to use as a dispatcher. If none is set, the pubsub module provided is used. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - default_access_type - - - - | -
- :strict | :filter | :runtime
- |
-
- :filter
- |
- - The default access type of policies for this resource. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - condition - - - - | -
- `any`
- |
- - - | -- A check or list of checks that must be true in order for this policy to apply. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the policy, used when explaining authorization results - | -|
- - - access_type - - - - | -
- :strict | :filter | :runtime
- |
- - - | -- What portion of the checks inside the policy are allowed to run. See the guide for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - condition - - - - | -
- `any`
- |
- - - | -- A check or list of checks that must be true in order for this policy to apply. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the policy, used when explaining authorization results - | -|
- - - access_type - - - - | -
- :strict | :filter | :runtime
- |
- - - | -- What portion of the checks inside the policy are allowed to run. See the guide for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - fields - - - - | -
- atom | list(atom)
- |
- - - | -- The field or fields that the policy applies to. - | -|
- - - condition - - - - | -
- `any`
- |
- - - | -- A check or list of checks that must be true in order for this field policy to apply. If not specified, it always applies. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the policy, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - fields - - - - | -
- atom | list(atom)
- |
- - - | -- The field or fields that the policy applies to. - | -|
- - - condition - - - - | -
- `any`
- |
- - - | -- A check or list of checks that must be true in order for this field policy to apply. If not specified, it always applies. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- A description for the policy, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - check - - - * - - | -
- `any`
- |
- - - | -- The check to run. See `Ash.Policy.Check` for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- String.t
- |
- - - | -- A short name or description for the check, used when explaining authorization results - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - warn_on_empty? - - - - | -
- boolean
- |
-
- true
- |
- - Set to `false` to ignore warnings about an empty registry - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - entry - - - * - - | -
- atom
- |
- - - | -- The referenced module - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the attribute. - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the attribute. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
- - - | -- Constraints to provide to the type when casting the value. For more, see the [constraints topic](/documentation/topics/constraints.md). - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the attribute. - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute value contains sensitive information, like PII. See the [Security guide](/documentation/topics/security.md) for more. - - | -|
- - - source - - - - | -
- atom
- |
- - - | -- If the field should be mapped to a different name in the data layer. Support varies by data layer. - - | -|
- - - always_select? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to ensure this attribute is always selected when reading from the database, regardless of applied select statements. - - | -|
- - - primary_key? - - - - | -
- boolean
- |
-
- false
- |
- - Whether the attribute is the primary key. Composite primary key is also possible by using `primary_key? true` in more than one attribute. If primary_key? is true, allow_nil? must be false. - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the attribute can be set to nil. If nil value is given error is raised. - - | -|
- - - generated? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value may be generated by the data layer. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the value can be written to. Non-writable attributes can still be written with `Ash.Changeset.force_change_attribute/3`. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - The attribute is not publically writable, and should not be exposed over any public interfaces. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A value to be set on all creates, unless a value is being provided already. - | -|
- - - update_default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A value to be set on all updates, unless a value is being provided already. - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the attribute can be referenced in filters. - - | -|
- - - match_other_defaults? - - - - | -
- boolean
- |
-
- false
- |
- - Ensures that other attributes that use the same "lazy" default (a function or an mfa), use the same default value. Has no effect unless `default` is a zero argument function. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the attribute. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - type - - - - | -
- module
- |
-
- Ash.Type.UtcDatetimeUsec
- |
- - The type of the attribute. See `Ash.Type` for more. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
- - - | -- Constraints to provide to the type when casting the value. For more, see the [constraints topic](/documentation/topics/constraints.md). - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the attribute. - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute value contains sensitive information, like PII. See the [Security guide](/documentation/topics/security.md) for more. - - | -|
- - - source - - - - | -
- atom
- |
- - - | -- If the field should be mapped to a different name in the data layer. Support varies by data layer. - - | -|
- - - always_select? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to ensure this attribute is always selected when reading from the database, regardless of applied select statements. - - | -|
- - - primary_key? - - - - | -
- boolean
- |
-
- false
- |
- - Whether the attribute is the primary key. Composite primary key is also possible by using `primary_key? true` in more than one attribute. If primary_key? is true, allow_nil? must be false. - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute can be set to nil. If nil value is given error is raised. - - | -|
- - - generated? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value may be generated by the data layer. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value can be written to. Non-writable attributes can still be written with `Ash.Changeset.force_change_attribute/3`. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- true
- |
- - The attribute is not publically writable, and should not be exposed over any public interfaces. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
-
- &DateTime.utc_now/0
- |
- - A value to be set on all creates, unless a value is being provided already. - | -|
- - - update_default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A value to be set on all updates, unless a value is being provided already. - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the attribute can be referenced in filters. - - | -|
- - - match_other_defaults? - - - - | -
- boolean
- |
-
- true
- |
- - Ensures that other attributes that use the same "lazy" default (a function or an mfa), use the same default value. Has no effect unless `default` is a zero argument function. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the attribute. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - type - - - - | -
- module
- |
-
- Ash.Type.UtcDatetimeUsec
- |
- - The type of the attribute. See `Ash.Type` for more. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
- - - | -- Constraints to provide to the type when casting the value. For more, see the [constraints topic](/documentation/topics/constraints.md). - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the attribute. - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute value contains sensitive information, like PII. See the [Security guide](/documentation/topics/security.md) for more. - - | -|
- - - source - - - - | -
- atom
- |
- - - | -- If the field should be mapped to a different name in the data layer. Support varies by data layer. - - | -|
- - - always_select? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to ensure this attribute is always selected when reading from the database, regardless of applied select statements. - - | -|
- - - primary_key? - - - - | -
- boolean
- |
-
- false
- |
- - Whether the attribute is the primary key. Composite primary key is also possible by using `primary_key? true` in more than one attribute. If primary_key? is true, allow_nil? must be false. - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute can be set to nil. If nil value is given error is raised. - - | -|
- - - generated? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value may be generated by the data layer. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value can be written to. Non-writable attributes can still be written with `Ash.Changeset.force_change_attribute/3`. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- true
- |
- - The attribute is not publically writable, and should not be exposed over any public interfaces. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
-
- &DateTime.utc_now/0
- |
- - A value to be set on all creates, unless a value is being provided already. - | -|
- - - update_default - - - - | -
- (-> any) | mfa | any()
- |
-
- &DateTime.utc_now/0
- |
- - A value to be set on all updates, unless a value is being provided already. - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the attribute can be referenced in filters. - - | -|
- - - match_other_defaults? - - - - | -
- boolean
- |
-
- true
- |
- - Ensures that other attributes that use the same "lazy" default (a function or an mfa), use the same default value. Has no effect unless `default` is a zero argument function. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the attribute. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - type - - - - | -
- module
- |
-
- :integer
- |
- - The type of the attribute. See `Ash.Type` for more. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
- - - | -- Constraints to provide to the type when casting the value. For more, see the [constraints topic](/documentation/topics/constraints.md). - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the attribute. - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute value contains sensitive information, like PII. See the [Security guide](/documentation/topics/security.md) for more. - - | -|
- - - source - - - - | -
- atom
- |
- - - | -- If the field should be mapped to a different name in the data layer. Support varies by data layer. - - | -|
- - - always_select? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to ensure this attribute is always selected when reading from the database, regardless of applied select statements. - - | -|
- - - primary_key? - - - - | -
- boolean
- |
-
- true
- |
- - Whether the attribute is the primary key. Composite primary key is also possible by using `primary_key? true` in more than one attribute. If primary_key? is true, allow_nil? must be false. - - | -|
- - - generated? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the value may be generated by the data layer. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value can be written to. Non-writable attributes can still be written with `Ash.Changeset.force_change_attribute/3`. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - The attribute is not publically writable, and should not be exposed over any public interfaces. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A value to be set on all creates, unless a value is being provided already. - | -|
- - - update_default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A value to be set on all updates, unless a value is being provided already. - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the attribute can be referenced in filters. - - | -|
- - - match_other_defaults? - - - - | -
- boolean
- |
-
- false
- |
- - Ensures that other attributes that use the same "lazy" default (a function or an mfa), use the same default value. Has no effect unless `default` is a zero argument function. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the attribute. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - type - - - - | -
- module
- |
-
- :uuid
- |
- - The type of the attribute. See `Ash.Type` for more. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
- - - | -- Constraints to provide to the type when casting the value. For more, see the [constraints topic](/documentation/topics/constraints.md). - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the attribute. - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the attribute value contains sensitive information, like PII. See the [Security guide](/documentation/topics/security.md) for more. - - | -|
- - - source - - - - | -
- atom
- |
- - - | -- If the field should be mapped to a different name in the data layer. Support varies by data layer. - - | -|
- - - always_select? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to ensure this attribute is always selected when reading from the database, regardless of applied select statements. - - | -|
- - - primary_key? - - - - | -
- boolean
- |
-
- true
- |
- - Whether the attribute is the primary key. Composite primary key is also possible by using `primary_key? true` in more than one attribute. If primary_key? is true, allow_nil? must be false. - - | -|
- - - generated? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value may be generated by the data layer. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the value can be written to. Non-writable attributes can still be written with `Ash.Changeset.force_change_attribute/3`. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - The attribute is not publically writable, and should not be exposed over any public interfaces. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
-
- &Ash.UUID.generate/0
- |
- - A value to be set on all creates, unless a value is being provided already. - | -|
- - - update_default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A value to be set on all updates, unless a value is being provided already. - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the attribute can be referenced in filters. - - | -|
- - - match_other_defaults? - - - - | -
- boolean
- |
-
- false
- |
- - Ensures that other attributes that use the same "lazy" default (a function or an mfa), use the same default value. Has no effect unless `default` is a zero argument function. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- atom
- |
- - - | -- The name of the relationship - | -|
- - - destination - - - - | -
- module
- |
- - - | -- The destination resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - manual - - - - | -
- (any, any -> any) | module
- |
- - - | -- A module that implements `Ash.Resource.ManualRelationship`. Also accepts a 2 argument function that takes the source records and the context. - - | -|
- - - no_attributes? - - - - | -
- boolean
- |
- - - | -- All existing entities are considered related, i.e this relationship is not based on any fields, and `source_attribute` and `destination_attribute` are ignored. See the See the [relationships guide](/documentation/topics/relationships.md) for more. - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Marks the relationship as required. Has no effect on validations, but can inform extensions that there will always be a related entity. - - | -|
- - - from_many? - - - - | -
- boolean
- |
-
- false
- |
- - Signal that this relationship is actually a `has_many` where the first record is given via the `sort`. This will allow data layers to properly deduplicate when necessary. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the relationship - | -|
- - - destination_attribute - - - - | -
- atom
- |
- - - | -- The attribute on the related resource that should match the `source_attribute` configured on this resource. - | -|
- - - validate_destination_attribute? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not to validate that the destination field exists on the destination resource - | -|
- - - source_attribute - - - - | -
- atom
- |
-
- :id
- |
- - The field on this resource that should match the `destination_attribute` on the related resource. - | -|
- - - relationship_context - - - - | -
- `any`
- |
- - - | -- Context to be set on any queries or changesets generated for managing or querying this relationship. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the relationship will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - not_found_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on update or create, or when managing relationships. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the relationship may be managed. - - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action on the destination resource to use when loading data and filtering. - - | -|
- - - api - - - - | -
- atom
- |
- - - | -- The API module to use when working with the related entity. - - | -|
- - - filter - - - - | -
- `any`
- |
- - - | -- A filter to be applied when reading the relationship. - - | -|
- - - filterable? - - - - | -
- boolean
- |
-
- true
- |
- - If set to `false`, the relationship will not be usable in filters. - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort statement to be applied when loading the relationship. - - | -|
- - - could_be_related_at_creation? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not related values may exist for this relationship at creation. - - | -|
- - - violation_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on destroy. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- atom
- |
- - - | -- The name of the relationship - | -|
- - - destination - - - - | -
- module
- |
- - - | -- The destination resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - manual - - - - | -
- (any, any -> any) | module
- |
- - - | -- A module that implements `Ash.Resource.ManualRelationship`. Also accepts a 2 argument function that takes the source records and the context. - - | -|
- - - no_attributes? - - - - | -
- boolean
- |
- - - | -- All existing entities are considered related, i.e this relationship is not based on any fields, and `source_attribute` and `destination_attribute` are ignored. See the See the [relationships guide](/documentation/topics/relationships.md) for more. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the relationship - | -|
- - - destination_attribute - - - - | -
- atom
- |
- - - | -- The attribute on the related resource that should match the `source_attribute` configured on this resource. - | -|
- - - validate_destination_attribute? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not to validate that the destination field exists on the destination resource - | -|
- - - source_attribute - - - - | -
- atom
- |
-
- :id
- |
- - The field on this resource that should match the `destination_attribute` on the related resource. - | -|
- - - relationship_context - - - - | -
- `any`
- |
- - - | -- Context to be set on any queries or changesets generated for managing or querying this relationship. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the relationship will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - not_found_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on update or create, or when managing relationships. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the relationship may be managed. - - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action on the destination resource to use when loading data and filtering. - - | -|
- - - api - - - - | -
- atom
- |
- - - | -- The API module to use when working with the related entity. - - | -|
- - - filter - - - - | -
- `any`
- |
- - - | -- A filter to be applied when reading the relationship. - - | -|
- - - filterable? - - - - | -
- boolean
- |
-
- true
- |
- - If set to `false`, the relationship will not be usable in filters. - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort statement to be applied when loading the relationship. - - | -|
- - - could_be_related_at_creation? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not related values may exist for this relationship at creation. - - | -|
- - - violation_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on destroy. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- atom
- |
- - - | -- The name of the relationship - | -|
- - - destination - - - - | -
- module
- |
- - - | -- The destination resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - through - - - * - - | -
- module
- |
- - - | -- The resource to use as the join resource. - | -|
- - - source_attribute_on_join_resource - - - - | -
- atom
- |
- - - | -
- The attribute on the join resource that should line up with `source_attribute` on this resource. Defaults to ` |
-|
- - - destination_attribute_on_join_resource - - - - | -
- atom
- |
- - - | -
- The attribute on the join resource that should line up with `destination_attribute` on the related resource. Defaults to ` |
-|
- - - join_relationship - - - - | -
- atom
- |
- - - | -
- The has_many relationship to the join resource. Defaults to ` |
-|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the relationship - | -|
- - - destination_attribute - - - - | -
- atom
- |
-
- :id
- |
- - The attribute on the related resource that should match the `source_attribute` configured on this resource. - | -|
- - - validate_destination_attribute? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not to validate that the destination field exists on the destination resource - | -|
- - - source_attribute - - - - | -
- atom
- |
-
- :id
- |
- - The field on this resource that should match the `destination_attribute` on the related resource. - | -|
- - - relationship_context - - - - | -
- `any`
- |
- - - | -- Context to be set on any queries or changesets generated for managing or querying this relationship. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the relationship will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - not_found_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on update or create, or when managing relationships. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the relationship may be managed. - - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action on the destination resource to use when loading data and filtering. - - | -|
- - - api - - - - | -
- atom
- |
- - - | -- The API module to use when working with the related entity. - - | -|
- - - filter - - - - | -
- `any`
- |
- - - | -- A filter to be applied when reading the relationship. - - | -|
- - - filterable? - - - - | -
- boolean
- |
-
- true
- |
- - If set to `false`, the relationship will not be usable in filters. - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort statement to be applied when loading the relationship. - - | -|
- - - could_be_related_at_creation? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not related values may exist for this relationship at creation. - - | -|
- - - violation_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on destroy. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - - | -
- atom
- |
- - - | -- The name of the relationship - | -|
- - - destination - - - - | -
- module
- |
- - - | -- The destination resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - primary_key? - - - - | -
- boolean
- |
-
- false
- |
- - Whether the generated attribute is, or is part of, the primary key of a resource. - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether this relationship must always be present, e.g: must be included on creation, and never removed (it may be modified). The generated attribute will not allow nil values. - | -|
- - - attribute_writable? - - - - | -
- boolean
- |
-
- false
- |
- - Whether the generated attribute will be marked as public & writable. - - | -|
- - - define_attribute? - - - - | -
- boolean
- |
-
- true
- |
- - If set to `false` an attribute is not created on the resource for this relationship, and one must be manually added in `attributes`, invalidating many other options. - | -|
- - - attribute_type - - - - | -
- `any`
- |
-
- :uuid
- |
- - The type of the generated created attribute. See `Ash.Type` for more. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the relationship - | -|
- - - destination_attribute - - - - | -
- atom
- |
-
- :id
- |
- - The attribute on the related resource that should match the `source_attribute` configured on this resource. - | -|
- - - validate_destination_attribute? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not to validate that the destination field exists on the destination resource - | -|
- - - source_attribute - - - - | -
- atom
- |
- - - | -
- The field on this resource that should match the `destination_attribute` on the related resource. - Defaults to |
-|
- - - relationship_context - - - - | -
- `any`
- |
- - - | -- Context to be set on any queries or changesets generated for managing or querying this relationship. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the relationship will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - not_found_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on update or create, or when managing relationships. - - | -|
- - - writable? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the relationship may be managed. - - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action on the destination resource to use when loading data and filtering. - - | -|
- - - api - - - - | -
- atom
- |
- - - | -- The API module to use when working with the related entity. - - | -|
- - - filter - - - - | -
- `any`
- |
- - - | -- A filter to be applied when reading the relationship. - - | -|
- - - filterable? - - - - | -
- boolean
- |
-
- true
- |
- - If set to `false`, the relationship will not be usable in filters. - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort statement to be applied when loading the relationship. - - | -|
- - - violation_message - - - - | -
- String.t
- |
- - - | -- A message to show if there is a conflict with this relationship in the database on destroy. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - defaults - - - - | -
- list(:create | :read | :update | :destroy)
- |
- - - | -- Creates a simple action of each specified type, with the same name as the type. These will be `primary?` unless one already exists for that type. Embedded resources, however, have a default of all resource types. - - | -|
- - - default_accept - - - - | -
- list(atom)
- |
- - - | -- A default value for the `accept` option for each action. Defaults to all public attributes. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the action - | -|
- - - returns - - - - | -
- module
- |
- - - | -- The return type of the action. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
- - - | -- Constraints for the return type. See the [constriants topic](/documentation/topics/constraints.md) for more. - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the action can return nil. Unlike attributes & arguments, this defaults to `false`. - - | -|
- - - run - - - - | -
- (any, any -> any) | module
- |
- - - | -- - | -|
- - - primary? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this action should be used when no action is specified by the caller. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the action - | -|
- - - transaction? - - - - | -
- boolean
- |
- - - | -- Whether or not the action should be run in transactions. Reads default to false, while create/update/destroy actions default to `true`. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources that the action may touch, used when building transactions. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the argument. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. For more information, see [the constraints topic](/documentation/topics/constraints.md). - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil (or may be not provided). If nil value is given error is raised. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument should be suppliable by the client. - - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument value contains sensitive information, like PII. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the argument to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the action - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - allow_nil_input - - - - | -
- list(atom)
- |
- - - | -- A list of attributes that would normally be required, but should not be for this action. They will still be validated just before the record is created. - - | -|
- - - manual - - - - | -
- (any, any -> any) | module
- |
- - - | -- Override the creation behavior. Accepts a module or module and opts, or a function that takes the changeset and context. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -|
- - - upsert? - - - - | -
- boolean
- |
-
- false
- |
- - Forces all uses of this action to be treated as an upsert. - - | -|
- - - upsert_identity - - - - | -
- atom
- |
- - - | -- The identity to use for the upsert. Cannot be overriden by the caller. Ignored if `upsert?` is not set to `true`. - - | -|
- - - upsert_fields - - - - | -
- :replace_all | {:replace, atom | list(atom)} | {:replace_all_except, atom | list(atom)} | atom | list(atom)
- |
- - - | -- The fields to overwrite in the case of an upsert. If not provided, all fields except for fields set by defaults will be overwritten. - - | -|
- - - primary? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this action should be used when no action is specified by the caller. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the action - | -|
- - - transaction? - - - - | -
- boolean
- |
- - - | -- Whether or not the action should be run in transactions. Reads default to false, while create/update/destroy actions default to `true`. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources that the action may touch, used when building transactions. - - | -|
- - - accept - - - - | -
- :all | list(atom)
- |
- - - | -- The list of attributes to accept. Defaults to all attributes on the resource - | -|
- - - delay_global_validations? - - - - | -
- boolean
- |
-
- false
- |
- - If true, global validations will be done in a `before_action` hook, regardless of their configuration on the resource. - - | -|
- - - skip_global_validations? - - - - | -
- boolean
- |
-
- false
- |
- - If true, global validations will be skipped. Useful for manual actions. - - | -|
- - - reject - - - - | -
- :all | list(atom)
- |
- - - | -- A list of attributes not to accept. If this is specified along with `accept`, these are removed from the `accept` list. - - | -|
- - - require_attributes - - - - | -
- list(atom)
- |
- - - | -- A list of attributes that would normally `allow_nil?`, to require for this action. No need to include attributes that already do not allow nil? - - | -|
- - - error_handler - - - - | -
- mfa
- |
- - - | -- Sets the error handler on the changeset. See `Ash.Changeset.handle_errors/2` for more - | -|
- - - manual? - - - - | -
- boolean
- |
- - - | -- Instructs Ash to *skip* the actual update/create/destroy step at the data layer. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - change - - - * - - | -
- (any, any -> any) | module
- |
- - - | -- The module and options for a change. Also accepts a function that takes the changeset and the context. See `Ash.Resource.Change.Builtins` for builtin changes. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the change should only be run on valid changes. By default, all changes are run unless stated otherwise here. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the change - | -|
- - - where - - - - | -
- list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. These validations failing will result in this validation being ignored. - - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, changes are only run atomically if all changes will be run atomically or if there is no `change/3` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - validation - - - * - - | -
- (any -> any) | module
- |
- - - | -- The module (or module and opts) that implements the `Ash.Resource.Validation` behaviour. Also accepts a one argument function that takes the changeset. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - where - - - - | -
- (any -> any) | module | list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. Any of these validations failing will result in this validation being ignored. - - | -|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the validation should only run on valid changes. Useful for expensive validations or validations that depend on valid data. - | -|
- - - message - - - - | -
- String.t
- |
- - - | -- If provided, overrides any message set by the validation error - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the validation - | -|
- - - before_action? - - - - | -
- boolean
- |
-
- false
- |
- - If set to `true`, the validation will be run in a before_action hook - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, validations are only run atomically if all changes will be run atomically or if there is no `validate/2` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the argument. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. For more information, see [the constraints topic](/documentation/topics/constraints.md). - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil (or may be not provided). If nil value is given error is raised. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument should be suppliable by the client. - - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument value contains sensitive information, like PII. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the argument to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the metadata - | -|
- - - type - - - * - - | -
- `any`
- |
- - - | -- The type of the metadata. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Type constraints on the metadata - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the metadata. - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the metadata may return `nil` - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the metadata to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the action - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - filter - - - - | -
- `any`
- |
- - - | -- A filter template that will be applied whenever the action is used. See `Ash.Filter` for more on templates - | -|
- - - manual - - - - | -
- (any, any, any -> any) | module
- |
- - - | -- Delegates running of the query to the provided module. Accepts a module or module and opts, or a function that takes the changeset and context. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -|
- - - get? - - - - | -
- boolean
- |
-
- false
- |
- - Expresses that this action innately only returns a single result. Used by extensions to validate and/or modify behavior. Causes code interfaces to return a single value instead of a list. See the [code interface guide](/documentation/topics/code-interface.md) for more. - - | -|
- - - modify_query - - - - | -
- mfa | (any, any -> any)
- |
- - - | -- Allows direct manipulation of the data layer query via an MFA. The ash query and the data layer query will be provided as additional arguments. The result must be `{:ok, new_data_layer_query} | {:error, error}`. - - | -|
- - - get_by - - - - | -
- atom | list(atom)
- |
- - - | -- A helper to automatically generate a "get by X" action. Sets `get?` to true, add args for each of the specified fields, and adds a filter for each of the arguments. - - | -|
- - - primary? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this action should be used when no action is specified by the caller. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the action - | -|
- - - transaction? - - - - | -
- boolean
- |
- - - | -- Whether or not the action should be run in transactions. Reads default to false, while create/update/destroy actions default to `true`. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources that the action may touch, used when building transactions. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the argument. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. For more information, see [the constraints topic](/documentation/topics/constraints.md). - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil (or may be not provided). If nil value is given error is raised. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument should be suppliable by the client. - - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument value contains sensitive information, like PII. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the argument to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - preparation - - - * - - | -
- (any, any -> any) | module
- |
- - - | -- The module and options for a preparation. Also accepts functions take the query and the context. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - keyset? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not keyset based pagination is supported - | -|
- - - offset? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not offset based pagination is supported - | -|
- - - default_limit - - - - | -
- pos_integer
- |
- - - | -- The default page size to apply, if one is not supplied - | -|
- - - countable - - - - | -
- true | false | :by_default
- |
-
- false
- |
- - Whether not a returned page will have a full count of all records. Use `:by_default` to do it automatically. - | -|
- - - max_page_size - - - - | -
- pos_integer
- |
-
- 250
- |
- - The maximum amount of records that can be requested in a single page - | -|
- - - required? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not pagination can be disabled. Only relevant if some pagination configuration is supplied. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the metadata - | -|
- - - type - - - * - - | -
- `any`
- |
- - - | -- The type of the metadata. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Type constraints on the metadata - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the metadata. - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the metadata may return `nil` - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the metadata to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the action - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - manual - - - - | -
- (any, any -> any) | module
- |
- - - | -- Override the update behavior. Accepts a module or module and opts, or a function that takes the changeset and context. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -|
- - - primary? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this action should be used when no action is specified by the caller. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the action - | -|
- - - transaction? - - - - | -
- boolean
- |
- - - | -- Whether or not the action should be run in transactions. Reads default to false, while create/update/destroy actions default to `true`. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources that the action may touch, used when building transactions. - - | -|
- - - accept - - - - | -
- :all | list(atom)
- |
- - - | -- The list of attributes to accept. Defaults to all attributes on the resource - | -|
- - - delay_global_validations? - - - - | -
- boolean
- |
-
- false
- |
- - If true, global validations will be done in a `before_action` hook, regardless of their configuration on the resource. - - | -|
- - - skip_global_validations? - - - - | -
- boolean
- |
-
- false
- |
- - If true, global validations will be skipped. Useful for manual actions. - - | -|
- - - reject - - - - | -
- :all | list(atom)
- |
- - - | -- A list of attributes not to accept. If this is specified along with `accept`, these are removed from the `accept` list. - - | -|
- - - require_attributes - - - - | -
- list(atom)
- |
- - - | -- A list of attributes that would normally `allow_nil?`, to require for this action. No need to include attributes that already do not allow nil? - - | -|
- - - error_handler - - - - | -
- mfa
- |
- - - | -- Sets the error handler on the changeset. See `Ash.Changeset.handle_errors/2` for more - | -|
- - - manual? - - - - | -
- boolean
- |
- - - | -- Instructs Ash to *skip* the actual update/create/destroy step at the data layer. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - change - - - * - - | -
- (any, any -> any) | module
- |
- - - | -- The module and options for a change. Also accepts a function that takes the changeset and the context. See `Ash.Resource.Change.Builtins` for builtin changes. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the change should only be run on valid changes. By default, all changes are run unless stated otherwise here. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the change - | -|
- - - where - - - - | -
- list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. These validations failing will result in this validation being ignored. - - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, changes are only run atomically if all changes will be run atomically or if there is no `change/3` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - validation - - - * - - | -
- (any -> any) | module
- |
- - - | -- The module (or module and opts) that implements the `Ash.Resource.Validation` behaviour. Also accepts a one argument function that takes the changeset. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - where - - - - | -
- (any -> any) | module | list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. Any of these validations failing will result in this validation being ignored. - - | -|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the validation should only run on valid changes. Useful for expensive validations or validations that depend on valid data. - | -|
- - - message - - - - | -
- String.t
- |
- - - | -- If provided, overrides any message set by the validation error - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the validation - | -|
- - - before_action? - - - - | -
- boolean
- |
-
- false
- |
- - If set to `true`, the validation will be run in a before_action hook - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, validations are only run atomically if all changes will be run atomically or if there is no `validate/2` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the metadata - | -|
- - - type - - - * - - | -
- `any`
- |
- - - | -- The type of the metadata. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Type constraints on the metadata - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the metadata. - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the metadata may return `nil` - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the metadata to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the argument. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. For more information, see [the constraints topic](/documentation/topics/constraints.md). - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil (or may be not provided). If nil value is given error is raised. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument should be suppliable by the client. - - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument value contains sensitive information, like PII. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the argument to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the action - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - soft? - - - - | -
- atom
- |
-
- false
- |
- - If specified, the destroy action behaves as an update internally - | -|
- - - manual - - - - | -
- (any, any -> any) | module
- |
- - - | -- Override the update behavior. Accepts a module or module and opts, or a function that takes the changeset and context. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -|
- - - primary? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not this action should be used when no action is specified by the caller. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the action - | -|
- - - transaction? - - - - | -
- boolean
- |
- - - | -- Whether or not the action should be run in transactions. Reads default to false, while create/update/destroy actions default to `true`. - - | -|
- - - touches_resources - - - - | -
- list(atom)
- |
- - - | -- A list of resources that the action may touch, used when building transactions. - - | -|
- - - accept - - - - | -
- :all | list(atom)
- |
- - - | -- The list of attributes to accept. Defaults to all attributes on the resource - | -|
- - - delay_global_validations? - - - - | -
- boolean
- |
-
- false
- |
- - If true, global validations will be done in a `before_action` hook, regardless of their configuration on the resource. - - | -|
- - - skip_global_validations? - - - - | -
- boolean
- |
-
- false
- |
- - If true, global validations will be skipped. Useful for manual actions. - - | -|
- - - reject - - - - | -
- :all | list(atom)
- |
- - - | -- A list of attributes not to accept. If this is specified along with `accept`, these are removed from the `accept` list. - - | -|
- - - require_attributes - - - - | -
- list(atom)
- |
- - - | -- A list of attributes that would normally `allow_nil?`, to require for this action. No need to include attributes that already do not allow nil? - - | -|
- - - error_handler - - - - | -
- mfa
- |
- - - | -- Sets the error handler on the changeset. See `Ash.Changeset.handle_errors/2` for more - | -|
- - - manual? - - - - | -
- boolean
- |
- - - | -- Instructs Ash to *skip* the actual update/create/destroy step at the data layer. See the [manual actions guide](/documentation/topics/manual-actions.md) for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - change - - - * - - | -
- (any, any -> any) | module
- |
- - - | -- The module and options for a change. Also accepts a function that takes the changeset and the context. See `Ash.Resource.Change.Builtins` for builtin changes. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the change should only be run on valid changes. By default, all changes are run unless stated otherwise here. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the change - | -|
- - - where - - - - | -
- list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. These validations failing will result in this validation being ignored. - - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, changes are only run atomically if all changes will be run atomically or if there is no `change/3` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - validation - - - * - - | -
- (any -> any) | module
- |
- - - | -- The module (or module and opts) that implements the `Ash.Resource.Validation` behaviour. Also accepts a one argument function that takes the changeset. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - where - - - - | -
- (any -> any) | module | list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. Any of these validations failing will result in this validation being ignored. - - | -|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the validation should only run on valid changes. Useful for expensive validations or validations that depend on valid data. - | -|
- - - message - - - - | -
- String.t
- |
- - - | -- If provided, overrides any message set by the validation error - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the validation - | -|
- - - before_action? - - - - | -
- boolean
- |
-
- false
- |
- - If set to `true`, the validation will be run in a before_action hook - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, validations are only run atomically if all changes will be run atomically or if there is no `validate/2` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the metadata - | -|
- - - type - - - * - - | -
- `any`
- |
- - - | -- The type of the metadata. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Type constraints on the metadata - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the metadata. - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the metadata may return `nil` - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the metadata to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the argument. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. For more information, see [the constraints topic](/documentation/topics/constraints.md). - - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil (or may be not provided). If nil value is given error is raised. - - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument should be suppliable by the client. - - | -|
- - - sensitive? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the argument value contains sensitive information, like PII. See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- The default value for the argument to take. It can be a zero argument function e.g `&MyMod.my_fun/0` or a value - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - define_for - - - - | -
- module
- |
-
- false
- |
- - Defines the code interface on the resource module directly, using the provided Api. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the function that will be defined - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - action - - - - | -
- atom
- |
- - - | -- The name of the action that will be called. Defaults to the same name as the function. - | -|
- - - args - - - - | -
- list(atom | {:optional, atom})
- |
- - - | -- Map specific arguments to named inputs. Can provide any argument/attributes that the action allows. - - | -|
- - - not_found_error? - - - - | -
- boolean
- |
-
- true
- |
- - If the action or interface is configured with `get?: true`, this determines whether or not an error is raised or `nil` is returned. - | -|
- - - get? - - - - | -
- boolean
- |
- - - | -- Expects to only receive a single result from a read action, and returns a single result instead of a list. Ignored for other action types. - - | -|
- - - get_by - - - - | -
- atom | list(atom)
- |
- - - | -- Takes a list of fields and adds those fields as arguments, which will then be used to filter. Sets `get?` to true automatically. Ignored for non-read actions. - - | -|
- - - get_by_identity - - - - | -
- atom
- |
- - - | -- Only relevant for read actions. Takes an identity, and gets its field list, performing the same logic as `get_by` once it has the list of fields. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the function that will be defined - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - calculation - - - - | -
- atom
- |
- - - | -- The name of the calculation that will be evaluated. Defaults to the same name as the function. - | -|
- - - args - - - - | -
- `any`
- |
-
- []
- |
- - Supply field or argument values referenced by the calculation, in the form of :name, `{:arg, :name}` and/or `{:ref, :name}`. See the [code interface guide](/documentation/topics/code-interface.md) for more. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - description - - - - | -
- String.t
- |
- - - | -- A human readable description of the resource, to be used in generated documentation - | -|
- - - base_filter - - - - | -
- `any`
- |
- - - | -- A filter statement to be applied to any queries on the resource - | -|
- - - default_context - - - - | -
- `any`
- |
- - - | -- Default context to apply to any queries/changesets generated for this resource. - | -|
- - - trace_name - - - - | -
- String.t
- |
- - - | -- The name to use in traces. Defaults to the short_name stringified. See the [monitoring guide](/documentation/topics/monitoring.md) for more. - - | -|
- - - short_name - - - - | -
- atom
- |
- - - | -- A short identifier for the resource, which should be unique. See the [monitoring guide](/documentation/topics/monitoring.md) for more. - - | -|
- - - plural_name - - - - | -
- atom
- |
- - - | -- A pluralized version of the resource short_name. May be used by generators or automated tooling. - - | -|
- - - simple_notifiers - - - - | -
- list(module)
- |
- - - | -- A list of notifiers that require no DSL. Can be used to avoid compile time dependencies on notifiers - | -|
- - - require_primary_key? - - - - | -
- boolean
- |
-
- true
- |
- - Allow the resource to be used without any primary key fields. Warning: this option is experimental, and should not be used unless you know what you're doing. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the identity. - | -|
- - - keys - - - * - - | -
- atom | list(atom)
- |
- - - | -- The names of the attributes that uniquely identify this resource. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - eager_check_with - - - - | -
- module
- |
- - - | -- Validates that the unique identity provided is unique at validation time, outside of any transactions, using the api module provided. - - | -|
- - - pre_check_with - - - - | -
- module
- |
- - - | -- Validates that the unique identity provided is unique in a before_action hook. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the identity - | -|
- - - message - - - - | -
- String.t
- |
- - - | -- An error message to use when the unique identity would be violated - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - change - - - * - - | -
- (any, any -> any) | module
- |
- - - | -- The module and options for a change. Also accepts a function that takes the changeset and the context. See `Ash.Resource.Change.Builtins` for builtin changes. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - on - - - - | -
- :create | :update | :destroy | list(:create | :update | :destroy)
- |
-
- [:create, :update]
- |
- - The action types the validation should run on. Destroy actions are omitted by default as most changes don't make sense for a destroy. - - | -|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the change should only be run on valid changes. By default, all changes are run unless stated otherwise here. - - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the change - | -|
- - - where - - - - | -
- list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. These validations failing will result in this validation being ignored. - - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, changes are only run atomically if all changes will be run atomically or if there is no `change/3` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - preparation - - - * - - | -
- (any, any -> any) | module
- |
- - - | -- The module and options for a preparation. Also accepts functions take the query and the context. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - validation - - - * - - | -
- (any -> any) | module
- |
- - - | -- The module (or module and opts) that implements the `Ash.Resource.Validation` behaviour. Also accepts a one argument function that takes the changeset. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - where - - - - | -
- (any -> any) | module | list((any -> any) | module)
- |
-
- []
- |
- - Validations that should pass in order for this validation to apply. Any of these validations failing will result in this validation being ignored. - - | -|
- - - on - - - - | -
- :create | :update | :destroy | list(:create | :update | :destroy)
- |
-
- [:create, :update]
- |
- - The action types the validation should run on. Many validations don't make sense in the context of deletion, so by default it is not included. - - | -|
- - - only_when_valid? - - - - | -
- boolean
- |
-
- false
- |
- - If the validation should only run on valid changes. Useful for expensive validations or validations that depend on valid data. - | -|
- - - message - - - - | -
- String.t
- |
- - - | -- If provided, overrides any message set by the validation error - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the validation - | -|
- - - before_action? - - - - | -
- boolean
- |
-
- false
- |
- - If set to `true`, the validation will be run in a before_action hook - | -|
- - - always_atomic? - - - - | -
- boolean
- |
-
- false
- |
- - By default, validations are only run atomically if all changes will be run atomically or if there is no `validate/2` callback defined. Set this to `true` to run it atomically always. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - uniq? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to count unique values only - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort to be applied to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - uniq? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not to count unique values only - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort to be applied to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field to place the aggregate in - | -|
- - - relationship_path - - - * - - | -
- atom | list(atom)
- |
- - - | -- The relationship or relationship path to use for the aggregate - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the value returned by the aggregate - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - implementation - - - * - - | -
- module
- |
- - - | -- The module that implements the relevant data layer callbacks - | -|
- - - kind - - - * - - | -
- :count | :first | :sum | :list | :avg | :max | :min | :exists | :custom | {:custom, module}
- |
- - - | -- The kind of the aggregate - | -|
- - - read_action - - - - | -
- atom
- |
- - - | -- The read action to use when building the aggregate. Defaults to the primary read action. Keep in mind this action must not have any required arguments. - - | -|
- - - field - - - - | -
- atom
- |
- - - | -- The field to aggregate. Defaults to the first field in the primary key of the resource - | -|
- - - filter - - - - | -
- `any`
- |
-
- []
- |
- - A filter to apply to the aggregate - | -|
- - - sort - - - - | -
- `any`
- |
- - - | -- A sort to be applied to the aggregate - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the aggregate - | -|
- - - default - - - - | -
- `any`
- |
- - - | -- A default value to use in cases where nil would be used. Count defaults to `0`. - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the aggregate will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the aggregate should be usable in filters. - | -|
- - - authorize? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the aggregate query should authorize based on the target action, if the parent query is authorized. Requires filter checks on the target action. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The field name to use for the calculation value - | -|
- - - type - - - * - - | -
- `any`
- |
- - - | -- The type of the calculation. See `Ash.Type` for more. - | -|
- - - calculation - - - * - - | -
- (any, any -> any) | module | `any`
- |
- - - | -- The `module`, `{module, opts}` or `expr(...)` to use for the calculation. Also accepts a function that takes *a single record* and produces the result. - - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type. See `Ash.Type` for more. - | -|
- - - description - - - - | -
- String.t
- |
- - - | -- An optional description for the calculation - | -|
- - - private? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the calculation will appear in any interfaces created off of this resource, e.g AshJsonApi and AshGraphql See the [security guide](/documentation/topics/security.md) for more. - - | -|
- - - select - - - - | -
- list(atom)
- |
-
- []
- |
- - A list of fields to ensure selected if the calculation is used. - | -|
- - - load - - - - | -
- `any`
- |
-
- []
- |
- - A load statement to be applied if the calculation is used. - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the calculation can return nil. - | -|
- - - filterable? - - - - | -
- boolean | :simple_equality
- |
-
- true
- |
- - Whether or not the calculation should be usable in filters. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - name - - - * - - | -
- atom
- |
- - - | -- The name of the argument - | -|
- - - type - - - * - - | -
- module
- |
- - - | -- The type of the argument. See `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - default - - - - | -
- (-> any) | mfa | any()
- |
- - - | -- A default value to use for the argument if not provided - | -|
- - - allow_nil? - - - - | -
- boolean
- |
-
- true
- |
- - Whether or not the argument value may be nil (or may be not provided) - | -|
- - - allow_expr? - - - - | -
- boolean
- |
-
- false
- |
- - Allow passing expressions as argument values. Expressions cannot be type validated. - | -|
- - - constraints - - - - | -
- Keyword.t
- |
-
- []
- |
- - Constraints to provide to the type when casting the value. See the type's documentation and `Ash.Type` for more. - | -
Name | -Type | -Default | -Docs | -|
---|---|---|---|---|
- - - strategy - - - - | -
- :context | :attribute
- |
-
- :context
- |
- - Determine if multitenancy is performed with attribute filters or using data layer features. - - | -|
- - - attribute - - - - | -
- atom
- |
- - - | -- If using the `attribute` strategy, the attribute to use, e.g `org_id` - - | -|
- - - global? - - - - | -
- boolean
- |
-
- false
- |
- - Whether or not the data also exists outside of each tenant. - - | -|
- - - parse_attribute - - - - | -
- mfa
- |
-
- {Ash.Resource.Dsl, :identity, []}
- |
- - An mfa ({module, function, args}) pointing to a function that takes a tenant and returns the attribute value - | -