Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
RhysLees committed Dec 11, 2023
1 parent 9bbcf73 commit 9deecda
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,16 @@ $paginatorRequest = DocuWare::searchRequestBuilder()
->get();

$paginator = $connector->send($paginatorRequest)->dto();

/**
* Search documents filtered to multiple values.
*/
$paginatorRequest = DocuWare::searchRequestBuilder()
->fileCabinet($id)
->filterIn('TYPE', ['Order', 'Invoice'])
->get();

$paginator = $connector->send($paginatorRequest)->dto();

/**
* You can specify the dialog which should be used.
Expand Down

0 comments on commit 9deecda

Please sign in to comment.