You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ISSUES:
Resolves#166Resolves#167
DESCRIPTION:
Adds the ability to delete documents that match the given filter.
For example:
```
mutation {
delete_user(filter: {name: {_eq: "Shahzad"}}) {
DeletedKey: _key
}
}
```
Gives this on successful deletion of all documents with name = `Shahzad`:
```
{
"data": [
{
"DeletedKey": "bae-6a6482a8-24e1-5c73-a237-ca569e41507d"
},
{
"DeletedKey": "bae-de1b3170-b0fa-5ae9-94d6-ae44ad560b24"
}
]
}
```
COMMITS:
* feat: Add deletion of documents that match a filter
* test: Add tests for deletion of documents with a filter
* Adhere to code review.
* Only log on `query.Close()`, do not overwrite return values using named
returns.
…etwork#206)
ISSUES:
Resolvessourcenetwork#166Resolvessourcenetwork#167
DESCRIPTION:
Adds the ability to delete documents that match the given filter.
For example:
```
mutation {
delete_user(filter: {name: {_eq: "Shahzad"}}) {
DeletedKey: _key
}
}
```
Gives this on successful deletion of all documents with name = `Shahzad`:
```
{
"data": [
{
"DeletedKey": "bae-6a6482a8-24e1-5c73-a237-ca569e41507d"
},
{
"DeletedKey": "bae-de1b3170-b0fa-5ae9-94d6-ae44ad560b24"
}
]
}
```
COMMITS:
* feat: Add deletion of documents that match a filter
* test: Add tests for deletion of documents with a filter
* Adhere to code review.
* Only log on `query.Close()`, do not overwrite return values using named
returns.
No description provided.
The text was updated successfully, but these errors were encountered: