Skip to content

Commit

Permalink
doc: some minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
imagineDevit committed Oct 2, 2023
1 parent e11c95e commit 81ffd73
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions docs/src/inner_attributes/field.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ ___

| Argument | Optional | Description |
|----------------------|----------|--------------------------------------------------------------------------------------------------------------------------------|
| column_name | yes | The name edgeDB table column represented by the field.<br> <br/> _**By default**_: the name of the field |
| param | yes | The query parameter name.<br> <br> _**By default**_: the name of the field_**By default**_: the name of the field |
| column_name | yes | The name of the edgeDB table column represented by the field.<br> <br/> _**By default**_: the name of the field |
| param | yes | The query parameter name.<br> <br> _**By default**_: the name of the field |
| scalar | yes | The field scalar type (example : "<default::str>").<br> <br/>_**By default**_: the scalar type corresponding to the field type |
| link_property (bool) | yes | Marks a field as link property. <br> <br/> _**By default**_: false |

Expand All @@ -39,12 +39,12 @@ ___

<br>

| Argument | Optional | Description |
|----------------------|----------|---------------------------------------------------------------------------------------------------------|
| column_name | yes | The name edgeDB table column represented by the field.<br> <br/>_**By default**_: the name of the field |
| wrapper_fn | yes | The function to apply to the field value |
| defaut_value | yes | The result field default value |
| link_property (bool) | yes | Marks a field as link property.<br> <br/> _**By default**_: false |
| Argument | Optional | Description |
|----------------------|----------|----------------------------------------------------------------------------------------------------------------|
| column_name | yes | The name of the edgeDB table column represented by the field.<br> <br/>_**By default**_: the name of the field |
| wrapper_fn | yes | The function to apply to the field value |
| defaut_value | yes | The result field default value |
| link_property (bool) | yes | Marks a field as link property.<br> <br/> _**By default**_: false |

<br>

Expand Down
2 changes: 1 addition & 1 deletion docs/src/inner_attributes/unless_conflict.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Unless Conflict

_**Unless Conflict**_ attribute represents a [unless conflict else ](https://www.edgedb.com/docs/edgeql/insert#conflicts) statement.<br> The decorated field must by of type
_**Unless Conflict**_ attribute represents a [unless conflict else ](https://www.edgedb.com/docs/edgeql/insert#conflicts) statement.<br> The decorated field must be of type
[edgedb_query::queries::conflict::UnlessConflict](https://docs.rs/edgedb-query/0.2.2/edgedb_query/queries/conflict/struct.UnlessConflict.html) or [edgedb_query::queries::conflict::UnlessConflictElse<T: ToEdgeQuery>](https://docs.rs/edgedb-query/0.2.2/edgedb_query/queries/conflict/struct.UnlessConflictElse.html).

#[unless_conflict(on)]
Expand Down

0 comments on commit 81ffd73

Please sign in to comment.