Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
59 | public function documentsByFolder(string $folderId): object |
||
60 | { |
||
61 | $this->data->query = "query { documentsByFolder(folder_id: \"{$folderId}\", limit: 60, page: 1) { total data { id name created_at files { original signed } signatures { public_id name email action { name } viewed { created_at } signed { created_at } rejected { created_at } } } } }"; |
||
62 | $this->execute(); |
||
63 | return $this->callback(); |
||
64 | } |
||
65 | } |