Skip to content

Commit

Permalink
doc: describe negative matching
Browse files Browse the repository at this point in the history
  • Loading branch information
awill1988 committed Jul 30, 2024
1 parent d26da33 commit 18295d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/httpclient/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@ paths:
minimum: 1
type: string
style: form
- description: The name of the clients to filter by. Prefix "!=" to search by negation.
- description: The name of the clients to filter by. Prefix with "!=" to filter with negative matching.
explode: true
in: query
name: client_name
required: false
schema:
type: string
style: form
- description: The owner of the clients to filter by. Prefix "!=" to search by negation.
- description: The owner of the clients to filter by. Prefix with "!=" to filter with negative matching.
explode: true
in: query
name: owner
Expand Down
4 changes: 2 additions & 2 deletions internal/httpclient/docs/OAuth2Api.md
Original file line number Diff line number Diff line change
Expand Up @@ -960,8 +960,8 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**pageSize** | **int64** | Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). | [default to 250]
**pageToken** | **string** | Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). | [default to "1"]
**clientName** | **string** | The name of the clients to filter by. |
**owner** | **string** | The owner of the clients to filter by. |
**clientName** | **string** | The name of the clients to filter by. Prefix with "!=" to filter with negative matching. |
**owner** | **string** | The owner of the clients to filter by. Prefix with "!=" to filter with negative matching. |

### Return type

Expand Down

0 comments on commit 18295d4

Please sign in to comment.